enable home-manager for koishi

This commit is contained in:
insects 2024-09-21 11:58:58 +02:00
parent a2c4cdee9b
commit 183db10312
7 changed files with 19 additions and 5 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }: {
nixpkgs = { nixpkgs = {
config = { config = {
allowUnfree = true; allowUnfree = true;
}; };

View file

@ -101,6 +101,12 @@
modules = [ modules = [
./darwin/koishi/configuration.nix ./darwin/koishi/configuration.nix
home-manager.darwinModules.home-manager home-manager.darwinModules.home-manager
{
home-manager.extraSpecialArgs = {
inherit inputs outputs;
};
home-manager.users.lu = import ./home/koishi.nix;
}
]; ];
}; };
}; };

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./global.nix ./global.nix
./global.linux.nix
./features/desktop ./features/desktop
]; ];

4
home/global.linux.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }: {
systemd.user.startServices = "sd-switch";
xdg.mime.enable = true;
}

View file

@ -32,8 +32,6 @@
}; };
}; };
systemd.user.startServices = "sd-switch";
programs = { programs = {
home-manager.enable = true; home-manager.enable = true;
}; };
@ -80,6 +78,4 @@
targets.kde.enable = false; targets.kde.enable = false;
targets.gtk.enable = false; targets.gtk.enable = false;
}; };
xdg.mime.enable = true;
} }

6
home/koishi.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }: {
imports = [
./global.nix
./features/desktop/font.nix
];
}

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./global.nix ./global.nix
./global.linux.nix
./features/desktop ./features/desktop
./features/desktop/games ./features/desktop/games
]; ];