diff --git a/dot_config/flake/flake.nix b/dot_config/flake/flake.nix index 9c43828..63af641 100644 --- a/dot_config/flake/flake.nix +++ b/dot_config/flake/flake.nix @@ -172,10 +172,10 @@ }; homeConfigurations = { - "tyler@guidebolt" = home-manager.lib.homeManagerConfiguration { + "tyler@saffron" = home-manager.lib.homeManagerConfiguration { pkgs = allPkgs."x86_64-linux"; extraSpecialArgs = {inherit inputs outputs;}; - modules = [./home/guidebolt/guidebolt.nix]; + modules = [./machines/saffron/home.nix]; }; }; }; diff --git a/dot_config/flake/machines/saffron/home.nix b/dot_config/flake/machines/saffron/home.nix new file mode 100644 index 0000000..b1fd674 --- /dev/null +++ b/dot_config/flake/machines/saffron/home.nix @@ -0,0 +1,16 @@ +{...}: { + imports = [ + ../../home/common.nix + ../../home/helide + ]; + + home = { + username = "tyler"; + homeDirectory = "/home/tyler"; + + packages = [ + ]; + + stateVersion = "23.11"; + }; +}