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
39 lines
800 B
Nix
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;
|
|
}
|