diff options
Diffstat (limited to 'accounts/mherold@eos.nix')
-rw-r--r-- | accounts/mherold@eos.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/accounts/mherold@eos.nix b/accounts/mherold@eos.nix new file mode 100644 index 00000000..6d376835 --- /dev/null +++ b/accounts/mherold@eos.nix | |||
@@ -0,0 +1,19 @@ | |||
1 | { userName, pkgs, ... }: { | ||
2 | config.home-manager.users.${userName} = { | ||
3 | nixpkgs.config = { | ||
4 | allowUnfree = true; | ||
5 | }; | ||
6 | |||
7 | home.packages = with pkgs; [ | ||
8 | thunderbird libreoffice element-desktop keepassxc | ||
9 | ]; | ||
10 | |||
11 | programs.firefox = { | ||
12 | enable = true; | ||
13 | profiles.default.settings = { | ||
14 | "dom.security.https_only_mode" = true; | ||
15 | "browser.cache.disk.enable" = false; | ||
16 | }; | ||
17 | }; | ||
18 | }; | ||
19 | } | ||