flakes/hosts/winter.nix

36 lines
838 B
Nix
Raw Normal View History

{ config, modules, overlays, pkgs, ... }: {
2021-05-11 14:32:58 +07:00
networking.hostName = "winter";
system.stateVersion = "20.09";
2021-05-16 22:36:56 +07:00
environment.etc = {
"machine-id".source = "/var/persist/machine-id";
"ssh/ssh_host_rsa_key".source = "/var/persist/ssh_host_rsa_key";
"ssh/ssh_host_rsa_key.pub".source = "/var/persist/ssh_host_rsa_key.pub";
"ssh/ssh_host_ed25519_key".source = "/var/persist/ssh_host_ed25519_key";
"ssh/ssh_host_ed25519_key.pub".source = "/var/persist/ssh_host_ed25519_key.pub";
2021-05-16 22:36:56 +07:00
};
environment.pathsToLink = [ "/share/zsh" ];
2021-05-16 21:50:29 +07:00
users.mutableUsers = false;
imports = with modules.system; [
audio
base
filesystem-winter
gui
2021-07-15 20:30:12 +07:00
gui
2021-07-15 19:07:57 +07:00
input
kernel
kernel-winter
networking
2021-07-15 20:26:09 +07:00
nix
packages
security
snapper
../users/rin.nix
2021-05-11 14:32:58 +07:00
];
2021-05-16 21:50:29 +07:00
i18n.defaultLocale = "en_GB.UTF-8";
2021-05-11 14:32:58 +07:00
}