dotfiles/system/hosts/Styx.nix

77 lines
1.6 KiB
Nix
Raw Normal View History

2022-08-09 16:30:54 +00:00
{ lib, ... }:
let
inherit (lib) optionals;
secret = import ../../secret/hosts/Styx.nix;
in
2022-02-03 22:35:52 +00:00
{
2022-02-06 14:03:02 +00:00
imports = [
2022-07-29 18:13:31 +00:00
../darwin/defaults.nix
../darwin/fonts.nix
2022-12-28 22:25:11 +00:00
../darwin/sudo.nix
2022-02-06 14:03:02 +00:00
];
2022-02-03 22:35:52 +00:00
nix = {
2022-08-22 19:15:44 +00:00
settings = {
experimental-features = [ "nix-command" "flakes" ];
extra-platforms = [ "x86_64-darwin" ];
2022-02-03 22:35:52 +00:00
2022-08-22 19:15:44 +00:00
auto-optimise-store = true;
keep-derivations = true;
keep-outputs = true;
2022-02-03 22:35:52 +00:00
2022-08-22 19:15:44 +00:00
substituters = [
"https://nix-community.cachix.org"
"https://wurzelpfropf.cachix.org"
2022-08-22 19:15:44 +00:00
"https://nifoc.cachix.org"
] ++ optionals secret.nix-cache.nifoc.enabled [
secret.nix-cache.nifoc.s3Url
];
2022-02-03 22:35:52 +00:00
2022-08-22 19:15:44 +00:00
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"wurzelpfropf.cachix.org-1:ilZwK5a6wJqVr7Fyrzp4blIEkGK+LJT0QrpWr1qBNq0="
2022-08-22 19:15:44 +00:00
"nifoc.cachix.org-1:ymuftq7RgN/lf/iWXFK8gpwDSAGFaGBeliWe9u6q8II="
] ++ optionals secret.nix-cache.nifoc.enabled [
secret.nix-cache.nifoc.publicKeyValue
];
trusted-users = [ "@admin" ];
};
configureBuildUsers = true;
2022-08-04 18:11:40 +00:00
2022-08-04 18:14:10 +00:00
distributedBuilds = true;
2022-08-04 18:11:40 +00:00
buildMachines = [
{
hostName = "builder-sail";
2022-08-07 17:45:07 +00:00
systems = [ "x86_64-linux" "aarch64-linux" ];
2022-08-04 18:11:40 +00:00
maxJobs = 1;
}
];
2023-02-27 16:51:39 +00:00
gc = {
automatic = true;
user = "daniel";
};
2022-02-03 22:35:52 +00:00
};
2022-10-24 11:19:23 +00:00
documentation.doc.enable = false;
2022-02-05 22:30:49 +00:00
users = {
users.daniel = {
home = "/Users/daniel";
};
};
2022-02-03 22:35:52 +00:00
environment = {
2022-07-29 18:13:31 +00:00
darwinConfig = "$HOME/.config/nixpkgs/system/hosts/Styx.nix";
2022-02-03 22:35:52 +00:00
};
services = {
nix-daemon.enable = true;
};
}