32 lines
603 B
Nix
32 lines
603 B
Nix
{
|
|
confPath = ./Lilim.nix;
|
|
pkgs = [
|
|
"base"
|
|
"emacs"
|
|
"extra"
|
|
"cpp"
|
|
"haskell"
|
|
"mailutils"
|
|
"python3"
|
|
"rustpkgs"
|
|
"xpkgs"
|
|
];
|
|
services = [
|
|
../../services/xserver.nix
|
|
../../services/udev.nix
|
|
../../services/cups.nix
|
|
];
|
|
conf = {
|
|
allowUnfree = true;
|
|
networking = {
|
|
hostName = "Lilim";
|
|
firewall = {
|
|
allowPing = true;
|
|
allowedUDPPorts = [];
|
|
allowedTCPPorts = [];
|
|
allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
|
|
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
|
|
};
|
|
};
|
|
};
|
|
}
|