1
0
Fork 0
dotfiles/system/hosts/Styx.nix

86 lines
1.8 KiB
Nix
Raw Normal View History

2022-02-03 23:35:52 +01:00
{
2022-02-06 15:03:02 +01:00
imports = [
2022-07-29 20:13:31 +02:00
../darwin/defaults.nix
../darwin/fonts.nix
2022-12-28 23:25:11 +01:00
../darwin/sudo.nix
2023-03-19 21:47:23 +01:00
../darwin/fish.nix
2023-04-05 10:10:31 +02:00
../darwin/attic.nix
2022-02-06 15:03:02 +01:00
];
2022-02-03 23:35:52 +01:00
nix = {
2022-08-22 21:15:44 +02:00
settings = {
experimental-features = [ "nix-command" "flakes" ];
extra-platforms = [ "x86_64-darwin" ];
2022-02-03 23:35:52 +01:00
2022-08-22 21:15:44 +02:00
auto-optimise-store = true;
keep-derivations = true;
keep-outputs = true;
2022-02-03 23:35:52 +01:00
2022-08-22 21:15:44 +02:00
substituters = [
2023-04-12 19:59:33 +02:00
"https://attic.cache.daniel.sx/nifoc-systems"
"https://nifoc.cachix.org"
2022-08-22 21:15:44 +02:00
"https://nix-community.cachix.org"
];
2022-02-03 23:35:52 +01:00
2022-08-22 21:15:44 +02:00
trusted-public-keys = [
2023-04-12 19:59:33 +02:00
"nifoc-systems:eDDqVP5BFR6/1KvXbF9oUL8JahDdmbrsYtxlQ57LOTU="
"nifoc.cachix.org-1:ymuftq7RgN/lf/iWXFK8gpwDSAGFaGBeliWe9u6q8II="
2022-08-22 21:15:44 +02:00
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
trusted-users = [ "@admin" ];
};
2023-04-05 10:10:31 +02:00
extraOptions = ''
2023-04-05 13:12:40 +02:00
post-build-hook = ${../../home/programs/scripts/attic-system-cache}
2023-04-05 10:10:31 +02:00
'';
2022-08-22 21:15:44 +02:00
configureBuildUsers = true;
2022-08-04 20:11:40 +02:00
2022-08-04 20:14:10 +02:00
distributedBuilds = true;
2022-08-04 20:11:40 +02:00
buildMachines = [
{
hostName = "builder-sail";
2022-08-07 19:45:07 +02:00
systems = [ "x86_64-linux" "aarch64-linux" ];
2022-08-04 20:11:40 +02:00
maxJobs = 1;
}
2023-04-04 17:20:09 +02:00
{
hostName = "builder-attic";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 1;
}
2023-04-13 18:53:40 +02:00
{
hostName = "builder-mediaserver";
systems = [ "x86_64-linux" "aarch64-linux" ];
maxJobs = 1;
}
2022-08-04 20:11:40 +02:00
];
2023-02-27 17:51:39 +01:00
gc = {
automatic = true;
user = "daniel";
2023-04-04 10:41:30 +02:00
interval = { Weekday = 0; Hour = 3; Minute = 15; };
2023-02-27 17:51:39 +01:00
};
2022-02-03 23:35:52 +01:00
};
2022-10-24 13:19:23 +02:00
documentation.doc.enable = false;
2022-02-05 23:30:49 +01:00
users = {
users.daniel = {
home = "/Users/daniel";
};
};
2022-02-03 23:35:52 +01:00
environment = {
2022-07-29 20:13:31 +02:00
darwinConfig = "$HOME/.config/nixpkgs/system/hosts/Styx.nix";
2023-04-05 13:12:40 +02:00
etc."nix/netrc".source = ../../secret/shared/nix-netrc;
2022-02-03 23:35:52 +01:00
};
services = {
nix-daemon.enable = true;
};
}