This commit is contained in:
Peder Bergebakken Sundt 2023-12-03 20:54:20 +01:00
parent 1f6e3c2509
commit 42fb12b5c7
2 changed files with 7 additions and 0 deletions

View File

@ -124,6 +124,9 @@
inherit inputs; inherit inputs;
flakes = flake inputs system; flakes = flake inputs system;
}; };
home-manager.sharedModules = [
sops-nix.homeManagerModules.sops
];
# still needed even if using networkd # still needed even if using networkd
networking.hostName = hostname; networking.hostName = hostname;
@ -201,6 +204,9 @@
modules = modules ++ [{ modules = modules ++ [{
home.username = user; home.username = user;
home.homeDirectory = home; home.homeDirectory = home;
home-manager.sharedModules = [
sops-nix.homeManagerModules.sops
];
}]; }];
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs flakes; inherit inputs flakes;

View File

@ -5,6 +5,7 @@
home.stateVersion = "22.11"; # TODO: what uses this? home.stateVersion = "22.11"; # TODO: what uses this?
imports = [ imports = [
./profiles/sops.nix
./profiles/bat.nix ./profiles/bat.nix
./profiles/git.nix ./profiles/git.nix
./profiles/gtk.nix ./profiles/gtk.nix