diff options
Diffstat (limited to 'accounts/gkleen@eostre.nix')
-rw-r--r-- | accounts/gkleen@eostre.nix | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/accounts/gkleen@eostre.nix b/accounts/gkleen@eostre.nix index dbe48ead..cad7e70b 100644 --- a/accounts/gkleen@eostre.nix +++ b/accounts/gkleen@eostre.nix | |||
@@ -4,20 +4,31 @@ | |||
4 | zsh utils tmux | 4 | zsh utils tmux |
5 | ]; | 5 | ]; |
6 | 6 | ||
7 | config.home-manager.users.${userName} = { | 7 | config = { |
8 | nixpkgs.config = { | 8 | systemd.services."home-manager-${userName}" = { |
9 | allowUnfree = true; | 9 | bindsTo = ["home-${userName}.mount"]; |
10 | after = ["home-${userName}.mount"]; | ||
10 | }; | 11 | }; |
11 | 12 | ||
12 | home.packages = with pkgs; [ | 13 | systemd.mounts."home-${userName}" = { |
13 | thunderbird libreoffice element-desktop keepassxc | 14 | wants = ["home-manager-${userName}.service"]; |
14 | ]; | 15 | }; |
16 | |||
17 | home-manager.users.${userName} = { | ||
18 | nixpkgs.config = { | ||
19 | allowUnfree = true; | ||
20 | }; | ||
21 | |||
22 | home.packages = with pkgs; [ | ||
23 | thunderbird libreoffice element-desktop keepassxc | ||
24 | ]; | ||
15 | 25 | ||
16 | programs.firefox = { | 26 | programs.firefox = { |
17 | enable = true; | 27 | enable = true; |
18 | profiles.default.settings = { | 28 | profiles.default.settings = { |
19 | "dom.security.https_only_mode" = true; | 29 | "dom.security.https_only_mode" = true; |
20 | "browser.cache.disk.enable" = false; | 30 | "browser.cache.disk.enable" = false; |
31 | }; | ||
21 | }; | 32 | }; |
22 | }; | 33 | }; |
23 | }; | 34 | }; |