mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2026-04-27 07:48:44 +02:00
machine/playman: init
This commit is contained in:
parent
be973e1d11
commit
2a44b8e852
15 changed files with 265 additions and 8 deletions
29
machines/playman/configuration.nix
Normal file
29
machines/playman/configuration.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./boot.nix
|
||||
./disko-config.nix
|
||||
./hardware-configuration.nix
|
||||
./network.nix
|
||||
./nixinate.nix
|
||||
./profiles.nix
|
||||
./services.nix
|
||||
./system.nix
|
||||
];
|
||||
|
||||
networking.hostName = "playman";
|
||||
|
||||
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 = "25.11";
|
||||
autoUpgrade.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue