diff --git a/homes/josh/home.nix b/homes/josh/home.nix index e5c3c3d..370f982 100644 --- a/homes/josh/home.nix +++ b/homes/josh/home.nix @@ -1,7 +1,10 @@ { + lib, + pkgs, profile, ... }: +with lib; { imports = [ ../../modules/homes @@ -21,5 +24,14 @@ # Let Home Manager install and manage itself programs.home-manager.enable = true; - nix.settings.allowed-users = [ "josh" ]; + nix = { + package = mkDefault pkgs.nix; + settings = { + allowed-users = [ "josh" ]; + experimental-features = [ + "nix-command" + "flakes" + ]; + }; + }; } \ No newline at end of file