16 lines
216 B
Nix
16 lines
216 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
./hyprland
|
|
./theme
|
|
./gnome
|
|
./polkit
|
|
./gdm
|
|
];
|
|
home-manager = {
|
|
extraSpecialArgs = {inherit inputs;};
|
|
users = {
|
|
"joy" = import ./home;
|
|
};
|
|
};
|
|
}
|