diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-10-19 03:32:50 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-10-19 03:32:50 -0700 |
commit | 6a43e31a32bb894c969d4ce823e4552af2c55999 (patch) | |
tree | 0a392dd586005b85f1189b78b57c4639347d2173 | |
parent | 0b938651389cdbc27e6918bd3788f559ba967166 (diff) | |
download | nix-6a43e31a32bb894c969d4ce823e4552af2c55999.tar nix-6a43e31a32bb894c969d4ce823e4552af2c55999.tar.gz nix-6a43e31a32bb894c969d4ce823e4552af2c55999.tar.bz2 nix-6a43e31a32bb894c969d4ce823e4552af2c55999.tar.lz nix-6a43e31a32bb894c969d4ce823e4552af2c55999.tar.xz nix-6a43e31a32bb894c969d4ce823e4552af2c55999.tar.zst nix-6a43e31a32bb894c969d4ce823e4552af2c55999.zip |
Adjust formatting
-rw-r--r-- | flake.nix | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -2,6 +2,7 @@ description = "nipsy's NixOS configuration"; inputs = { + disko = { url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs-unstable"; @@ -26,13 +27,16 @@ url = "github:Mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs-unstable"; }; + }; outputs = inputs@{ home-manager-stable, home-manager-unstable, nixos-hardware, nixpkgs-stable, nixpkgs-unstable, sops-nix, ... }: rec { + nixosConfigurations = { + arrakis = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; - #specialArgs = inputs; + #specialArgs = { inherit inputs; }; system = "x86_64-linux"; modules = [ ./hosts/arrakis @@ -47,7 +51,7 @@ darkstar = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; - #specialArgs = inputs; + #specialArgs = { inherit inputs; }; system = "x86_64-linux"; modules = [ ./hosts/darkstar @@ -61,7 +65,7 @@ ginaz = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; - #specialArgs = inputs; + #specialArgs = { inherit inputs; }; system = "x86_64-linux"; modules = [ ./hosts/ginaz @@ -112,4 +116,5 @@ overlays = [(import ./pkgs)]; }; }; + } |