diff options
author | sefidel <contact@sefidel.net> | 2022-01-18 20:52:11 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-18 20:52:11 +0900 |
commit | d194c1198cd3d80bb50610365c281d9b78f75900 (patch) | |
tree | c3e6d18fb75028f429ba6d349ffe6f68a5255aaa /home/profiles/base/default.nix | |
parent | 02179ec651ee7891b4838a7ffa4238ad5fd9668b (diff) | |
download | nixrc-d194c1198cd3d80bb50610365c281d9b78f75900.tar.gz nixrc-d194c1198cd3d80bb50610365c281d9b78f75900.zip |
lib/mk_home: pass inputs and self
Diffstat (limited to 'home/profiles/base/default.nix')
-rw-r--r-- | home/profiles/base/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index 4f26819..2e7fee1 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, self, ... }: +{ config, lib, inputs, pkgs, self, ... }: let cfg = config.profiles.base; @@ -58,7 +58,7 @@ in bright7 = "e4e4db"; }; - wallpaper = "${self.inputs.wallpapers}/nixos/nix-glow-fg-d4ae80.png"; + wallpaper = "${inputs.wallpapers}/nixos/nix-glow-fg-d4ae80.png"; }; home.keyboard.layout = "us"; |