Files
flocon/system/nix/default.nix
2025-01-29 21:34:17 +01:00

19 lines
328 B
Nix

{ pkgs, ... }:
{
imports = [
./nixpkgs.nix
./substituters.nix
];
# for flakes
environment.systemPackages = [ pkgs.git ];
nix.settings = {
auto-optimise-store = true;
builders-use-substitutes = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = ["root" "@wheel"];
};
}