From 283fbff4086eabdbcf0ecf0ab14795c4de34baed Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 7 Sep 2025 16:30:01 +0200 Subject: [PATCH] Add home configuration for hetzner --- configurations/home/srid@sensuous.nix | 13 +++++++++++++ modules/home/default.nix | 4 ++-- modules/home/linux-only.nix | 6 ++---- 3 files changed, 17 insertions(+), 6 deletions(-) create mode 100644 configurations/home/srid@sensuous.nix diff --git a/configurations/home/srid@sensuous.nix b/configurations/home/srid@sensuous.nix new file mode 100644 index 0000000..34c325c --- /dev/null +++ b/configurations/home/srid@sensuous.nix @@ -0,0 +1,13 @@ +{ flake, ... }: +let + inherit (flake) inputs; + inherit (inputs) self; +in +{ + imports = [ + self.homeModules.default + self.homeModules.linux-only + ]; + + home.username = "srid"; +} diff --git a/modules/home/default.nix b/modules/home/default.nix index 9007549..701d3c7 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -8,9 +8,9 @@ ./all/nix.nix ./all/git.nix ./all/direnv.nix - ./all/zellij.nix + # ./all/zellij.nix ./all/just.nix - ./all/juspay.nix + # ./all/juspay.nix ./claude-code ]; diff --git a/modules/home/linux-only.nix b/modules/home/linux-only.nix index 045c6c5..f4c338c 100644 --- a/modules/home/linux-only.nix +++ b/modules/home/linux-only.nix @@ -1,9 +1,7 @@ { imports = [ ./all/bash.nix - ./all/zsh.nix - ./all/vscode-server.nix - ./all/nushell - ./all/ghostty.nix # Install it anyway for TERM to work on VMs + # ./all/zsh.nix + # ./all/vscode-server.nix ]; }