nixos/machines/Sheol/options.nix

44 lines
664 B
Nix
Raw Normal View History

2024-11-15 21:58:10 +01:00
{...}: {
imports = [
../../options/copySysConf.nix
];
config.machine = {
allowUnfree = true;
hostName = "Sheol";
networkD = {
enable = true;
waitOnline = false;
};
administrators = [
{
name = "derped";
id = 1337;
}
];
conffiles = [
"etcfiles"
"etcvars"
"zsh"
];
pkgs = [
"base"
];
services = [
"desktop"
"desktop::sway"
# "kodi"
"openssh"
"mullvad"
];
firewall = {
enable = true;
allowPing = true;
};
};
config.system.copySysConf = {
enable = false;
addToNixPath = false;
};
}