mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
machine/workman: init
This commit is contained in:
parent
c48b59fe72
commit
8c029fad44
14 changed files with 336 additions and 1 deletions
29
machines/workman/configuration.nix
Normal file
29
machines/workman/configuration.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./boot.nix
|
||||
./disko-config.nix
|
||||
./hardware-configuration.nix
|
||||
./network.nix
|
||||
./profiles.nix
|
||||
./remote-build.nix
|
||||
./services.nix
|
||||
./system.nix
|
||||
];
|
||||
|
||||
networking.hostName = "workman";
|
||||
|
||||
sops = {
|
||||
defaultSopsFile = ./secrets.yaml;
|
||||
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||
gnupg.sshKeyPaths = [ ];
|
||||
};
|
||||
|
||||
# needed for cross-compilation
|
||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
|
||||
system = {
|
||||
stateVersion = "24.11";
|
||||
autoUpgrade.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue