53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ inputs, specialArgs, config, lib, ... }:
|
|
{
|
|
imports = [
|
|
inputs.home-manager.nixosModule
|
|
];
|
|
|
|
options = {
|
|
imalison.nixOverlay.enable = lib.mkOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
};
|
|
config = {
|
|
home-manager.extraSpecialArgs = {
|
|
nixos = {
|
|
inherit specialArgs config;
|
|
};
|
|
};
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
|
|
nix = rec {
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
registry.nixpkgs.flake = inputs.nixpkgs;
|
|
settings = {
|
|
keep-outputs = true;
|
|
keep-derivations = true;
|
|
};
|
|
channel.enable = false;
|
|
nixPath = [
|
|
"nixpkgs=${inputs.nixpkgs.outPath}"
|
|
];
|
|
settings.nix-path = nixPath;
|
|
binaryCaches = [
|
|
"https://cache.nixos.org"
|
|
"https://cache.railbird.ai"
|
|
];
|
|
binaryCachePublicKeys = [
|
|
"cache.railbird.ai:KhnvcouxtIU2zxUcjJsm4bUK3o1S3p8xMf9qfZGF7/A="
|
|
];
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(import ./overlay.nix)
|
|
] ++ (if config.imalison.nixOverlay.enable then [ inputs.nix.overlays.default ] else []);
|
|
|
|
# Allow all the things
|
|
nixpkgs.config.allowUnfree = true;
|
|
};
|
|
}
|