{ pkgs, lib, ... }: with lib; { imports = [ ../../options/machine.nix ../../options/copySysConf.nix ]; config.machine = { allowUnfree = true; hostName = "Lilim"; administrators = [ { name = "derped"; id = 1337; } ]; conffiles = [ "etcfiles" "etcvars" "fonts" "zsh" ]; pkgs = [ "base" "dict" "emacs" "emacs::doom-themes" "emacs::doom-modeline" # "emacs::solarized-theme" "emacs::company" "emacs::flyspell" "emacs::flycheck" # "emacs::powerline" "emacs::nix-mode" "emacs::magit" "emacs::mu4e" "emacs::org" "emacs::elpy" "emacs::transmission" # "emacs::rust" # "emacs::lsp" "extra" "cpp" "haskell" "mail_utils" "python3" "rustpkgs" "xpkgs" ]; services = [ "desktop" "udev" "cups" ]; firewall = { enable = true; allowPing = true; allowedUDPPorts = [ 24642 ]; allowedTCPPorts = [ 24642 ]; allowedUDPPortRanges = [ { from = 1714; to = 1764; } ]; allowedTCPPortRanges = [ { from = 1714; to = 1764; } ]; }; desktop.wms = [ "i3" ]; }; config.system.copySysConf = { enable = false; addToNixPath = false; }; }