fixed nur download, trying to use pkgs in it

This commit is contained in:
Bryan Ramos 2023-06-06 14:59:34 -04:00
parent 0fab2667f5
commit d547d04d86
2 changed files with 5 additions and 3 deletions

View file

@ -1,8 +1,8 @@
{ pkgs, ... }: { pkgs, config, ... }:
{ {
programs.home-manager.enable = true; programs.home-manager.enable = true;
imports = [ ./modules/default.nix ]; imports = [ (import ./modules/default.nix { inherit pkgs; }) ];
home.stateVersion = "22.11"; home.stateVersion = "22.11";
home.username = "bryan"; home.username = "bryan";

View file

@ -1,3 +1,5 @@
{ pkgs, lib, config, ... }:
{ {
imports = [ imports = [
./alacritty/default.nix ./alacritty/default.nix
@ -11,5 +13,5 @@
./neovim/default.nix ./neovim/default.nix
./security/default.nix ./security/default.nix
./utils/default.nix ./utils/default.nix
]; ] { inherit pkgs; };
} }