summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix43
1 files changed, 26 insertions, 17 deletions
diff --git a/flake.nix b/flake.nix
index 82c32c0..c83dc9e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -21,23 +21,32 @@
};
};
- outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, nix-index-database, ... }@inputs: {
- nixosConfigurations = {
- hyper-v = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- specialArgs = { inherit inputs; };
- modules = [ ./hosts/hyper-v/configuration.nix ];
- };
- desktop = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- specialArgs = { inherit inputs; };
- modules = [ ./hosts/desktop/configuration.nix ];
- };
- laptop = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- specialArgs = { inherit inputs; };
- modules = [ ./hosts/laptop/configuration.nix ];
+ outputs =
+ {
+ self,
+ nixpkgs,
+ nixpkgs-unstable,
+ home-manager,
+ nix-index-database,
+ ...
+ }@inputs:
+ {
+ nixosConfigurations = {
+ hyper-v = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/hyper-v/configuration.nix ];
+ };
+ desktop = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/desktop/configuration.nix ];
+ };
+ laptop = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/laptop/configuration.nix ];
+ };
};
};
- };
}