diff --git a/home.nix b/home.nix index ce06121..1648304 100644 --- a/home.nix +++ b/home.nix @@ -7,5 +7,5 @@ in (import "${home-manager}/nixos") ]; - home-manager.users.junikim = import ./rices/cwm.nix + home-manager.users.junikim = import ./rices/cwm.nix { inherit config pkgs } } diff --git a/rices/cwm.nix b/rices/cwm.nix index 582f12c..0d3801a 100644 --- a/rices/cwm.nix +++ b/rices/cwm.nix @@ -1,3 +1,4 @@ +{ config, pkgs, ...}: { # Home Manager needs a bit of information about you and the # paths it should manage. diff --git a/rices/gnome.nix b/rices/gnome.nix index 96a12db..3375ef6 100644 --- a/rices/gnome.nix +++ b/rices/gnome.nix @@ -1,3 +1,4 @@ +{ config, pkgs, ...}: { # Home Manager needs a bit of information about you and the # paths it should manage. @@ -62,4 +63,4 @@ ".tmux.conf".source = ../dotfiles/tmux.conf; ".zshrc".source = ../dotfiles/zshrc; }; -}; +}