summaryrefslogtreecommitdiff
path: root/modules/hosts/luna/home.nix
diff options
context:
space:
mode:
authorDominik Kaiser2026-06-12 18:10:16 +0200
committerDominik Kaiser2026-06-12 18:10:16 +0200
commit2df5bc584899f427495cc20927170de2a2c84b32 (patch)
treed1a87bcd3c17d605e3f25e4bb8d7a6ec060c73ba /modules/hosts/luna/home.nix
downloadnixos-2df5bc584899f427495cc20927170de2a2c84b32.tar.gz
nixos-2df5bc584899f427495cc20927170de2a2c84b32.zip
Setup luna
Diffstat (limited to 'modules/hosts/luna/home.nix')
-rw-r--r--modules/hosts/luna/home.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/hosts/luna/home.nix b/modules/hosts/luna/home.nix
new file mode 100644
index 0000000..3334060
--- /dev/null
+++ b/modules/hosts/luna/home.nix
@@ -0,0 +1,14 @@
+{ self, inputs, ... }: {
+
+ flake.homeModules.lunaHome = { pkgs, ... }: {
+ imports = [
+ self.homeModules.zen-browser
+ self.homeModules.vesktop
+ ];
+
+ programs.bash.enable = true;
+
+ home.stateVersion = "26.05";
+ };
+
+}