26 lines
449 B
Nix
26 lines
449 B
Nix
{ 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" ];
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
}
|