diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,7 +33,7 @@ nixos-wsl.inputs.nixpkgs.follows = "nixpkgs"; }; - outputs = {nixpkgs, ...} @ inputs: let + outputs = {self, nixpkgs, ...} @ inputs: let options = import ./options.nix; systems = ["x86_64-linux"]; perSystem = func: @@ -49,7 +49,7 @@ buildSystem = file: system: inputs.nixpkgs.lib.nixosSystem { inherit system; - specialArgs = {inherit inputs;}; + specialArgs = {inherit self inputs;}; modules = [ options ./home |