diff --git a/flake.nix b/flake.nix index 49606c9..c0cfaf4 100644 --- a/flake.nix +++ b/flake.nix @@ -49,20 +49,8 @@ [ ./systems/hetzner/ax41.nix ./nixos/server/harden.nix - # Temporarily sharing with Uday. - { - users.users.uday.isNormalUser = true; - home-manager.users."uday" = { - imports = [ - self.homeModules.common-linux - (import ./home/git.nix { - userName = "Uday Kiran"; - userEmail = "udaycruise2903@gmail.com"; - }) - ]; - }; - } + (import ./uday.nix { inherit self; }) ]; }; # Configurations for my only[^1] macOS machine (using nix-darwin) diff --git a/uday.nix b/uday.nix new file mode 100644 index 0000000..c2d9c63 --- /dev/null +++ b/uday.nix @@ -0,0 +1,13 @@ +{ self }: +{ + users.users.uday.isNormalUser = true; + home-manager.users."uday" = { + imports = [ + self.homeModules.common-linux + (import ./home/git.nix { + userName = "Uday Kiran"; + userEmail = "udaycruise2903@gmail.com"; + }) + ]; + }; +}