summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-24 11:51:39 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-24 11:51:39 -0400
commitd639c293ad1ba71008aeb5c54c40f59a076018dc (patch)
treee832a3f0ee5044c8b35e5642f07a62137bbffc2c /flake.nix
parentupdate ssh config (diff)
downloaddotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.gz
dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.tar.bz2
dotfiles-nix-d639c293ad1ba71008aeb5c54c40f59a076018dc.zip
redo lib, make global vars for key lists
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 94ff7d2..c1eea02 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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