34 lines
556 B
Nix
34 lines
556 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.lix-module.nixosModules.default
|
|
];
|
|
|
|
nix = {
|
|
settings = {
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
"pipe-operator"
|
|
];
|
|
substitute = true;
|
|
};
|
|
extraOptions = ''
|
|
keep-outputs = true
|
|
keep-derivations = true
|
|
'';
|
|
optimise.automatic = true;
|
|
};
|
|
|
|
system.nixos.tags = [ "fatcock-xxl" ];
|
|
|
|
hjem = {
|
|
clobberByDefault = true;
|
|
linker = pkgs.smfh;
|
|
};
|
|
|
|
environment.arbys = {
|
|
enable = true;
|
|
clobber = true;
|
|
};
|
|
}
|