diff options
Diffstat (limited to 'accounts/mherold@eos.nix')
-rw-r--r-- | accounts/mherold@eos.nix | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/accounts/mherold@eos.nix b/accounts/mherold@eos.nix index 9d622243..b2483c19 100644 --- a/accounts/mherold@eos.nix +++ b/accounts/mherold@eos.nix | |||
@@ -1,22 +1,24 @@ | |||
1 | { userName, pkgs, ... }: { | 1 | { userName, pkgs, ... }: { |
2 | users.users.${userName} = { | 2 | config = { |
3 | hashedPassword = "$6$rounds=500000$TaikR1KI4CGveV0a$jLrBjNScflgniUiy87zxQ.IjnyK8K7FbYTW7L0k0EBVrdiImds26WwNjA6DrQpENALwPMzJVIK5BTie17fFVG."; | 3 | users.users.${userName} = { |
4 | }; | 4 | hashedPassword = "$6$rounds=500000$TaikR1KI4CGveV0a$jLrBjNScflgniUiy87zxQ.IjnyK8K7FbYTW7L0k0EBVrdiImds26WwNjA6DrQpENALwPMzJVIK5BTie17fFVG."; |
5 | |||
6 | config.home-manager.users.${userName} = { | ||
7 | nixpkgs.config = { | ||
8 | allowUnfree = true; | ||
9 | }; | 5 | }; |
10 | 6 | ||
11 | home.packages = with pkgs; [ | 7 | home-manager.users.${userName} = { |
12 | thunderbird libreoffice element-desktop keepassxc | 8 | nixpkgs.config = { |
13 | ]; | 9 | allowUnfree = true; |
10 | }; | ||
11 | |||
12 | home.packages = with pkgs; [ | ||
13 | thunderbird libreoffice element-desktop keepassxc | ||
14 | ]; | ||
14 | 15 | ||
15 | programs.firefox = { | 16 | programs.firefox = { |
16 | enable = true; | 17 | enable = true; |
17 | profiles.default.settings = { | 18 | profiles.default.settings = { |
18 | "dom.security.https_only_mode" = true; | 19 | "dom.security.https_only_mode" = true; |
19 | "browser.cache.disk.enable" = false; | 20 | "browser.cache.disk.enable" = false; |
21 | }; | ||
20 | }; | 22 | }; |
21 | }; | 23 | }; |
22 | }; | 24 | }; |