diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-07-04 13:24:36 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-07-04 13:24:36 -0700 |
commit | 12722eb59146fa91e5307200c1b356578ac3d413 (patch) | |
tree | 2ac39bbe099cb055e6a7b13411cf34660a5ba1cf /home | |
parent | 29240178db8af670ce3eede245d38894880cc735 (diff) | |
download | nix-12722eb59146fa91e5307200c1b356578ac3d413.tar nix-12722eb59146fa91e5307200c1b356578ac3d413.tar.gz nix-12722eb59146fa91e5307200c1b356578ac3d413.tar.bz2 nix-12722eb59146fa91e5307200c1b356578ac3d413.tar.lz nix-12722eb59146fa91e5307200c1b356578ac3d413.tar.xz nix-12722eb59146fa91e5307200c1b356578ac3d413.tar.zst nix-12722eb59146fa91e5307200c1b356578ac3d413.zip |
Initial arrakis configuration
Diffstat (limited to 'home')
-rw-r--r-- | home/nipsy/arrakis.nix | 20 | ||||
-rw-r--r-- | home/root/arrakis.nix | 6 |
2 files changed, 26 insertions, 0 deletions
diff --git a/home/nipsy/arrakis.nix b/home/nipsy/arrakis.nix new file mode 100644 index 0000000..dc27d3e --- /dev/null +++ b/home/nipsy/arrakis.nix @@ -0,0 +1,20 @@ +{ inputs, lib, pkgs, config, outputs, ... }: +{ + imports = [ + common/core + common/optional/desktops + common/optional/desktops/services/xscreensaver.nix + #inputs.sops-nix.homeManagerModules.sops + ]; + + #sops = { + # age.keyFile = "/home/nipsy/.config/sops/age/keys.txt"; + # defaultSopsFile = ./secrets/ginaz.yaml; + + # secrets = { + # "ssh_config" = { + # path = "/home/nipsy/.ssh/config"; + # }; + # }; + #}; +} diff --git a/home/root/arrakis.nix b/home/root/arrakis.nix new file mode 100644 index 0000000..83c92cd --- /dev/null +++ b/home/root/arrakis.nix @@ -0,0 +1,6 @@ +{ inputs, lib, pkgs, config, outputs, ... }: +{ + imports = [ + common/core + ]; +} |