diff options
author | tzlil <tzlils@protonmail.com> | 2023-03-12 04:18:43 +0200 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-03-12 04:18:43 +0200 |
commit | e01face0fd810088617e76f6df85c34cdcafc44a (patch) | |
tree | 99b364150585d8dc4d515cb61efb15fc6c2f3e58 | |
parent | 7fb4f90f20d2f006d7fd07ad6262172def4cb59d (diff) |
add laptop system to nixosConfiguration
-rw-r--r-- | flake.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index ec2a03e..c20d83c 100644 --- a/flake.nix +++ b/flake.nix @@ -32,6 +32,7 @@ in { apps = inputs.nixinate.nixinate.x86_64-linux self; nixosConfigurations = { + laptop = mkSystem inputs.nixpkgs "x86_64-linux" "laptop"; # pc = mkSystem inputs.nixpkgs "x86_64-linux" "pc"; vm = mkSystem inputs.nixpkgs "x86_64-linux" "vm"; vps = mkSystem inputs.nixpkgs "x86_64-linux" "vps"; |