From 38644967845f6ff7b96d268cac12b0926fafe891 Mon Sep 17 00:00:00 2001 From: TheCrazyInsanity Date: Tue, 16 Dec 2025 07:58:04 -0500 Subject: [PATCH] Add new machine --- flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/flake.nix b/flake.nix index 21e7dae..5c45519 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,21 @@ home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; + home-manager.users.laythe = import ./machines/homepc/home.nix; + } + ]; + }; + workstation = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs outputs;}; + system = "x86_64-linux"; + modules = [ + ./machines/workstation/configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.extraSpecialArgs = {inherit inputs outputs;}; + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.laythe = import ./machines/homepc/home.nix; } ];