Refactor 'home/hosts/work'
parent
25dd5fc67b
commit
fdd4c13d34
|
|
@ -18,7 +18,7 @@
|
||||||
sops = {
|
sops = {
|
||||||
defaultSopsFile = "${builtins.toString inputs.nix-secrets}/secrets.yaml";
|
defaultSopsFile = "${builtins.toString inputs.nix-secrets}/secrets.yaml";
|
||||||
defaultSopsFormat = "yaml";
|
defaultSopsFormat = "yaml";
|
||||||
age.keyFile = "/home/hektor/.config/sops/age/keys.txt";
|
age.keyFile = "/home/${config.home.username}/.config/sops/age/keys.txt";
|
||||||
|
|
||||||
secrets."test" = { };
|
secrets."test" = { };
|
||||||
};
|
};
|
||||||
|
|
@ -28,14 +28,16 @@
|
||||||
defaultWrapper = "mesa";
|
defaultWrapper = "mesa";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.anki = import ../../modules/anki.nix;
|
programs = {
|
||||||
programs.firefox = import ../../modules/firefox.nix {
|
anki = import ../../modules/anki.nix;
|
||||||
|
firefox = import ../../modules/firefox.nix {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
inherit config;
|
inherit config;
|
||||||
};
|
};
|
||||||
programs.git = import ../../modules/git.nix;
|
git = import ../../modules/git.nix;
|
||||||
programs.keepassxc = import ../../modules/keepassxc.nix;
|
keepassxc = import ../../modules/keepassxc.nix;
|
||||||
|
};
|
||||||
home.packages = import ./packages.nix {
|
home.packages = import ./packages.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
inherit config;
|
inherit config;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue