49 lines
960 B
Nix
49 lines
960 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
inherit (config.local.systemVars) username;
|
|
in {
|
|
nix = {
|
|
package = pkgs.lix;
|
|
settings = {
|
|
accept-flake-config = true;
|
|
warn-dirty = false;
|
|
auto-optimise-store = true;
|
|
trusted-users = ["root" "@wheel"];
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
};
|
|
};
|
|
|
|
programs.nh = {
|
|
enable = true;
|
|
clean = {
|
|
enable = true;
|
|
extraArgs = "--keep-since 30d --keep 3";
|
|
};
|
|
};
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"cinny-4.2.3"
|
|
"cinny-unwrapped-4.2.3"
|
|
"segger-jlink-qt4-810"
|
|
];
|
|
segger-jlink.acceptLicense = true;
|
|
};
|
|
};
|
|
|
|
hjem.users.${username} = {
|
|
files.".config/environment.d/${config.local.homeVars.userEnvFile}.conf".text = ''
|
|
FLAKE="${config.hjem.users.${username}.directory}/.dotfiles"
|
|
'';
|
|
};
|
|
}
|