44 lines
664 B
Nix
44 lines
664 B
Nix
|
{...}: {
|
||
|
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;
|
||
|
};
|
||
|
}
|