Files
nixos/hosts/desktop/configuration.nix
T
lsoriano-mcm 37e982c983 added SOPS
2025-06-28 21:00:01 -05:00

30 lines
604 B
Nix

{
pkgs,
general,
builds,
inputs,
...
}: {
imports = [
inputs.sops-nix.nixosModules.sops
# Include the results of the hardware scan.
];
environment.systemPackages = with pkgs; [];
nixpkgs.config.allowUnfree = general.allowUnfree;
nix.settings = {
trusted-users = builds.builder.trustedUsers;
experimental-features = ["nix-command" "flakes"];
};
programs.ssh.extraConfig = general.ssh.extraConfig;
nix.distributedBuilds = true;
nix.settings.builders-use-substitutes = true;
# nix.buildMachines = builder.buildMachines;
system.stateVersion = "25.05";
}