Remove old Marid

This commit is contained in:
Kevin Baensch 2024-12-07 21:07:53 +01:00
parent 8cb423eb70
commit 743830f7c6
Signed by: derped
GPG key ID: C0F1D326C7626543
7 changed files with 0 additions and 224 deletions

View file

@ -1,56 +0,0 @@
{
pkgs,
lib,
...
}:
with lib;
{
imports = [
../../options/copySysConf.nix
];
config.machine = {
allowUnfree = true;
hostName = "Marid";
administrators = [
{
name = "derped";
id = 1337;
}
];
conffiles = [
"etcfiles"
"etcvars"
"fonts"
"zsh"
];
pkgs = [
"base"
"dict"
"nodejs"
"extra"
"mail_utils"
"python3"
"xpkgs"
];
services = [
"docker"
"desktop"
"desktop::i3"
"udev"
"fprintd"
];
firewall = {
enable = true;
allowPing = true;
allowedUDPPorts = [ ];
allowedTCPPorts = [ ];
allowedUDPPortRanges = [ ];
allowedTCPPortRanges = [ ];
};
};
config.system.copySysConf = {
enable = false;
addToNixPath = false;
};
}