enable home-manager for koishi
This commit is contained in:
parent
a2c4cdee9b
commit
183db10312
7 changed files with 19 additions and 5 deletions
|
@ -101,6 +101,12 @@
|
|||
modules = [
|
||||
./darwin/koishi/configuration.nix
|
||||
home-manager.darwinModules.home-manager
|
||||
{
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit inputs outputs;
|
||||
};
|
||||
home-manager.users.lu = import ./home/koishi.nix;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./global.nix
|
||||
./global.linux.nix
|
||||
./features/desktop
|
||||
];
|
||||
|
||||
|
|
4
home/global.linux.nix
Normal file
4
home/global.linux.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ ... }: {
|
||||
systemd.user.startServices = "sd-switch";
|
||||
xdg.mime.enable = true;
|
||||
}
|
|
@ -32,8 +32,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
};
|
||||
|
@ -80,6 +78,4 @@
|
|||
targets.kde.enable = false;
|
||||
targets.gtk.enable = false;
|
||||
};
|
||||
|
||||
xdg.mime.enable = true;
|
||||
}
|
||||
|
|
6
home/koishi.nix
Normal file
6
home/koishi.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./global.nix
|
||||
./features/desktop/font.nix
|
||||
];
|
||||
}
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
./global.nix
|
||||
./global.linux.nix
|
||||
./features/desktop
|
||||
./features/desktop/games
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue