enable home-manager for koishi
This commit is contained in:
parent
a2c4cdee9b
commit
183db10312
7 changed files with 19 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./global.nix
|
./global.nix
|
||||||
|
./global.linux.nix
|
||||||
./features/desktop
|
./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 = {
|
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
6
home/koishi.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
./global.nix
|
||||||
|
./features/desktop/font.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./global.nix
|
./global.nix
|
||||||
|
./global.linux.nix
|
||||||
./features/desktop
|
./features/desktop
|
||||||
./features/desktop/games
|
./features/desktop/games
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Reference in a new issue