diff options
author | Patryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou> | 2024-09-29 15:14:26 +0200 |
---|---|---|
committer | Patryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou> | 2024-09-29 15:14:26 +0200 |
commit | c7e1998ce4421270c13b1dcafb585fc0c1ae1f3b (patch) | |
tree | a98a2b93d27bb6052dcd188a867941951b14cedb | |
parent | 863731a242a0ac7213e0a52fb97954249926fcb4 (diff) | |
download | dots-c7e1998ce4421270c13b1dcafb585fc0c1ae1f3b.tar.gz dots-c7e1998ce4421270c13b1dcafb585fc0c1ae1f3b.zip |
6 current 2024-09-29 15:12:55 24.05.20240914.8f7492c 6.6.51 *
-rw-r--r-- | flake.nix | 42 |
1 files changed, 29 insertions, 13 deletions
diff --git a/flake.nix b/flake.nix index 5053df8..6a1b9f8 100644 --- a/flake.nix +++ b/flake.nix @@ -11,19 +11,35 @@ }; outputs = { self, nixpkgs, ... }@inputs: { - nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { - specialArgs = {inherit inputs;}; - modules = [ - ./machines/t14/configuration.nix - - inputs.home-manager.nixosModules.default - { - home-manager.useGlobalPkgs = true; - home-manager.useUserPackages = true; - home-manager.users.pn = import ./home.nix; - } - - ]; + nixosConfigurations = { + nixos = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs;}; + modules = [ + ./machines/x220-gnome/configuration.nix + + inputs.home-manager.nixosModules.default + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.pn = import ./home.nix; + } + + ]; + }; + t14 = nixpkgs.lib.nixosSystem { + specialArgs = {inherit inputs;}; + modules = [ + ./machines/t14/configuration.nix + + inputs.home-manager.nixosModules.default + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.pn = import ./home.nix; + } + + ]; + }; }; }; } |