From 54660ba4bd93b2bc4f2899e17abf8c2d6beebe2e Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Thu, 2 Oct 2025 09:06:34 -0400 Subject: [PATCH] Add thinkpad pop os --- configurations/home/srid@vixen.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 configurations/home/srid@vixen.nix diff --git a/configurations/home/srid@vixen.nix b/configurations/home/srid@vixen.nix new file mode 100644 index 0000000..b68a9cc --- /dev/null +++ b/configurations/home/srid@vixen.nix @@ -0,0 +1,24 @@ +# This machine uses Omarchy +# +# So we consciously pick what we need +{ flake, ... }: +let + inherit (flake) inputs; + inherit (inputs) self; + homeMod = self + /modules/home; +in +{ + imports = [ + "${homeMod}/claude-code" + "${homeMod}/all/git.nix" + "${homeMod}/all/just.nix" + "${homeMod}/all/direnv.nix" + "${homeMod}/all/starship.nix" + "${homeMod}/all/bash.nix" + "${homeMod}/all/terminal.nix" + # "${homeMod}/all/1password.nix" + ]; + + home.username = "srid"; + home.stateVersion = "25.05"; +}