Files
nixos/home/default.nix
T
Greg Hellings 5bf400de97 Flake updates and simplifying IVR
Failed attempts to enable unfree packages
Commented out github plugin for VSCode
Made standalone Home Manager not fail to find caches and honor more
settings
2025-03-20 10:45:16 -05:00

39 lines
800 B
Nix

{ top, overlays, ... }:
rec {
greghellings =
let
system = "x86_64-linux";
pkgs = (
import top.nixunstable {
inherit system overlays;
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
}
);
in
top.hmunstable.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
(import ../modules/nix-conf.nix {
inherit pkgs;
inherit (pkgs) lib;
cache = false;
})
./home.nix
];
extraSpecialArgs = {
inherit top;
nixvim = top.nixvimunstable;
gui = false;
gnome = false;
host = "ivr";
username = "gregory.hellings";
};
};
"gregory.hellings" = greghellings;
}