forked from Fachschaft/nixConfig
21 lines
393 B
Nix
21 lines
393 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../roles
|
|
../../roles/vm.nix
|
|
];
|
|
|
|
# System configuration here
|
|
|
|
environment.systemPackages = [pkgs.git];
|
|
|
|
networking.hostName = "nodens";
|
|
system.stateVersion = "24.11";
|
|
|
|
sops.secrets."nodens-deploy.key" = {
|
|
sopsFile = ./deploy.secrets.yaml;
|
|
owner = "root";
|
|
group = "root";
|
|
mode = "0400";
|
|
};
|
|
}
|