summaryrefslogtreecommitdiff
path: root/accounts
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-11-01 23:54:06 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2022-11-01 23:54:06 +0100
commit777bc595ca00c06f5ff03ae9ee4dd4bb9df1a3d6 (patch)
tree6d1b357cf1ae7139a6dc96a2d1189477c45054f8 /accounts
parent8b9a4af498f6e5d9808a60441de3a87a82ac8895 (diff)
downloadnixos-777bc595ca00c06f5ff03ae9ee4dd4bb9df1a3d6.tar
nixos-777bc595ca00c06f5ff03ae9ee4dd4bb9df1a3d6.tar.gz
nixos-777bc595ca00c06f5ff03ae9ee4dd4bb9df1a3d6.tar.bz2
nixos-777bc595ca00c06f5ff03ae9ee4dd4bb9df1a3d6.tar.xz
nixos-777bc595ca00c06f5ff03ae9ee4dd4bb9df1a3d6.zip
...
Diffstat (limited to 'accounts')
-rw-r--r--accounts/mherold@eos.nix32
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 };