summaryrefslogtreecommitdiff
path: root/accounts
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-10-31 15:15:00 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2022-10-31 15:15:00 +0100
commitf300ea69b66427bd2a5a92a4c4f0db0aa99392b0 (patch)
tree7cd983c26895bec9ad29f76990ece205a112f53e /accounts
parent31832d598650eb17ba24a81680039b1973e80158 (diff)
downloadnixos-f300ea69b66427bd2a5a92a4c4f0db0aa99392b0.tar
nixos-f300ea69b66427bd2a5a92a4c4f0db0aa99392b0.tar.gz
nixos-f300ea69b66427bd2a5a92a4c4f0db0aa99392b0.tar.bz2
nixos-f300ea69b66427bd2a5a92a4c4f0db0aa99392b0.tar.xz
nixos-f300ea69b66427bd2a5a92a4c4f0db0aa99392b0.zip
...
Diffstat (limited to 'accounts')
-rw-r--r--accounts/gkleen@eos.nix25
-rw-r--r--accounts/mherold@eos.nix19
-rw-r--r--accounts/mherold@eos/default.nix1
3 files changed, 43 insertions, 2 deletions
diff --git a/accounts/gkleen@eos.nix b/accounts/gkleen@eos.nix
index c157af78..dbe48ead 100644
--- a/accounts/gkleen@eos.nix
+++ b/accounts/gkleen@eos.nix
@@ -1 +1,24 @@
1{ ... }: {} 1{ flake, userName, pkgs, ... }:
2{
3 imports = with flake.nixosModules.userProfiles.${userName}; [
4 zsh utils tmux
5 ];
6
7 config.home-manager.users.${userName} = {
8 nixpkgs.config = {
9 allowUnfree = true;
10 };
11
12 home.packages = with pkgs; [
13 thunderbird libreoffice element-desktop keepassxc
14 ];
15
16 programs.firefox = {
17 enable = true;
18 profiles.default.settings = {
19 "dom.security.https_only_mode" = true;
20 "browser.cache.disk.enable" = false;
21 };
22 };
23 };
24}
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}
diff --git a/accounts/mherold@eos/default.nix b/accounts/mherold@eos/default.nix
deleted file mode 100644
index c157af78..00000000
--- a/accounts/mherold@eos/default.nix
+++ /dev/null
@@ -1 +0,0 @@
1{ ... }: {}