mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
27 lines
483 B
Nix
27 lines
483 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./boot.nix
|
|
./hardware-configuration.nix
|
|
./network.nix
|
|
./services.nix
|
|
./syncthing.nix
|
|
./system.nix
|
|
];
|
|
|
|
disko.devices = import ./disko-config.nix {
|
|
disks = [ "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi0" ];
|
|
};
|
|
|
|
networking.hostName = "newton";
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
gnupg.sshKeyPaths = [ ];
|
|
};
|
|
|
|
system = {
|
|
stateVersion = "23.05";
|
|
autoUpgrade.enable = true;
|
|
};
|
|
}
|