mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-08 05:49:23 +02:00
move home manger stuff to home manager modules
This commit is contained in:
parent
536fc32216
commit
414c9bd0eb
11 changed files with 508 additions and 541 deletions
|
@ -11,7 +11,26 @@ in {
|
|||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8oyMpS2hK3gQXyHIIVS6oilgMpemLmfhKKJ6RBMwUh johannes@joens.email"
|
||||
];
|
||||
};
|
||||
home-manager.users.root = {
|
||||
home = {
|
||||
username = config.users.users.root.name;
|
||||
homeDirectory = config.users.users.root.home;
|
||||
stateVersion = config.system.stateVersion;
|
||||
};
|
||||
jopejoe1 = {
|
||||
common = {
|
||||
enable = true;
|
||||
fonts = {
|
||||
serif = config.fonts.fontconfig.defaultFonts.serif;
|
||||
sansSerif = config.fonts.fontconfig.defaultFonts.sansSerif;
|
||||
monospace = config.fonts.fontconfig.defaultFonts.monospace;
|
||||
emoji = config.fonts.fontconfig.defaultFonts.emoji;
|
||||
};
|
||||
};
|
||||
git.enable = true;
|
||||
direnv.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
imports = [ ./home.nix ];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue