Add new machine Sheol.
This commit is contained in:
parent
4da68279f4
commit
0b1b8b6acb
9 changed files with 246 additions and 0 deletions
43
machines/Sheol/options.nix
Normal file
43
machines/Sheol/options.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{...}: {
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue