From f51562f1a129d95f2080f02b4238b2ce7be448a6 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Fri, 28 Nov 2025 22:51:42 -0500 Subject: [PATCH] added saffron config --- dot_config/flake/flake.nix | 4 ++-- dot_config/flake/machines/saffron/home.nix | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 dot_config/flake/machines/saffron/home.nix 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"; + }; +}