Merge branch 'main' of ssh://code.8bitbuddhism.com/aires/nix-configuration
This commit is contained in:
commit
c7f0e2eb24
|
@ -233,11 +233,11 @@
|
||||||
"nix-secrets": {
|
"nix-secrets": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1720640642,
|
"lastModified": 1720716326,
|
||||||
"narHash": "sha256-Wo/t7ox4Qd5Xlh5r3iVGOySEkK8hsZoEm9Z33PoxJlw=",
|
"narHash": "sha256-wflXa3lhKVZKf1BIZICaAohJEF0qbNgehEVgTLnbmO8=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "7bd1a9f5fc4bc1ebfdf3ceac7a19c6ce27d4a942",
|
"rev": "e63567dbb3da53348fe83993d9f8a48d9dff2629",
|
||||||
"revCount": 51,
|
"revCount": 52,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "file:./nix-secrets"
|
"url": "file:./nix-secrets"
|
||||||
},
|
},
|
||||||
|
|
|
@ -96,15 +96,6 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
Haven = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
modules = defaultModules ++ [
|
|
||||||
nixos-hardware.nixosModules.common-cpu-amd-pstate
|
|
||||||
nixos-hardware.nixosModules.common-gpu-amd
|
|
||||||
./hosts/Haven
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
Khanda = nixpkgs.lib.nixosSystem {
|
Khanda = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = defaultModules ++ [
|
modules = defaultModules ++ [
|
||||||
|
|
|
@ -10,9 +10,7 @@ let
|
||||||
stateVersion = "24.11";
|
stateVersion = "24.11";
|
||||||
hostName = "Dimaga";
|
hostName = "Dimaga";
|
||||||
|
|
||||||
start-services = pkgs.writeShellScriptBin "start-services" (
|
start-services = pkgs.writeShellScriptBin "start-services" (builtins.readFile ./start-services.sh);
|
||||||
builtins.readFile ../Haven/start-haven.sh
|
|
||||||
);
|
|
||||||
|
|
||||||
services-root = "/storage/services";
|
services-root = "/storage/services";
|
||||||
|
|
||||||
|
@ -111,7 +109,7 @@ in
|
||||||
};
|
};
|
||||||
apcupsd = {
|
apcupsd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configText = builtins.readFile ../Haven/etc/apcupsd.conf;
|
configText = builtins.readFile ./etc/apcupsd.conf;
|
||||||
};
|
};
|
||||||
airsonic = {
|
airsonic = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -179,7 +177,7 @@ in
|
||||||
};
|
};
|
||||||
ssh = {
|
ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ports = [ config.secrets.hosts.haven.ssh.port ];
|
ports = [ config.secrets.hosts.dimaga.ssh.port ];
|
||||||
};
|
};
|
||||||
virtualization = {
|
virtualization = {
|
||||||
host = {
|
host = {
|
||||||
|
|
|
@ -26,7 +26,7 @@ in
|
||||||
];
|
];
|
||||||
services.ssh = {
|
services.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ports = [ config.secrets.hosts.haven.ssh.port ];
|
ports = [ config.secrets.hosts.dimaga.ssh.port ];
|
||||||
};
|
};
|
||||||
users.aires.enable = true;
|
users.aires.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -52,11 +52,11 @@ in
|
||||||
registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
|
registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
|
||||||
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
||||||
|
|
||||||
# Configure remote build machines (mainly Haven)
|
# Configure remote build machines
|
||||||
# To enable remote builds for a specific host, add `nix.distributedBuilds = true;` to its config
|
# To enable remote builds for a specific host, add `nix.distributedBuilds = true;` to its config
|
||||||
buildMachines = [
|
buildMachines = [
|
||||||
{
|
{
|
||||||
hostName = "haven";
|
hostName = "dimaga";
|
||||||
systems = [
|
systems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
# Define user for managing media on Haven
|
# Define user for managing media files
|
||||||
let
|
let
|
||||||
cfg = config.aux.system.users.media;
|
cfg = config.aux.system.users.media;
|
||||||
in
|
in
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 7bd1a9f5fc4bc1ebfdf3ceac7a19c6ce27d4a942
|
Subproject commit e63567dbb3da53348fe83993d9f8a48d9dff2629
|
Loading…
Reference in a new issue