2019-10-23 03:44:17 +02:00
|
|
|
{ pkgs, lib, ... }:
|
2019-03-23 02:50:48 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2019-10-23 03:44:17 +02:00
|
|
|
imports = [
|
|
|
|
../../options/machine.nix
|
2019-04-18 07:40:47 +02:00
|
|
|
../../options/copySysConf.nix
|
2019-03-23 02:50:48 +01:00
|
|
|
];
|
|
|
|
config.machine = {
|
|
|
|
allowUnfree = true;
|
|
|
|
hostName = "Lilim";
|
2019-04-13 00:05:39 +02:00
|
|
|
administrators = [ { name = "derped"; id = 1337; } ];
|
2019-03-23 02:50:48 +01:00
|
|
|
conffiles = [
|
|
|
|
"etcfiles"
|
|
|
|
"etcvars"
|
|
|
|
"fonts"
|
|
|
|
"zsh"
|
|
|
|
];
|
|
|
|
pkgs = [
|
|
|
|
"base"
|
|
|
|
"dict"
|
|
|
|
"emacs"
|
2019-11-17 23:13:50 +01:00
|
|
|
"emacs::doom-themes"
|
|
|
|
"emacs::doom-modeline"
|
|
|
|
# "emacs::solarized-theme"
|
|
|
|
"emacs::company"
|
|
|
|
"emacs::flyspell"
|
|
|
|
"emacs::flycheck"
|
|
|
|
# "emacs::powerline"
|
|
|
|
"emacs::nix-mode"
|
|
|
|
"emacs::magit"
|
|
|
|
"emacs::org"
|
|
|
|
"emacs::elpy"
|
|
|
|
# "emacs::rust"
|
2019-03-23 02:50:48 +01:00
|
|
|
"extra"
|
|
|
|
"cpp"
|
|
|
|
"haskell"
|
2019-10-11 20:51:46 +02:00
|
|
|
"mail_utils"
|
2019-03-23 02:50:48 +01:00
|
|
|
"python3"
|
|
|
|
"rustpkgs"
|
|
|
|
"xpkgs"
|
|
|
|
];
|
|
|
|
services = [
|
2019-05-04 13:47:21 +02:00
|
|
|
"desktop"
|
2019-03-23 02:50:48 +01:00
|
|
|
"udev"
|
|
|
|
"cups"
|
|
|
|
];
|
|
|
|
firewall = {
|
2019-08-27 16:24:59 +02:00
|
|
|
enable = true;
|
2019-03-23 02:50:48 +01:00
|
|
|
allowPing = true;
|
2019-11-17 23:13:50 +01:00
|
|
|
allowedUDPPorts = [ 24642 ];
|
|
|
|
allowedTCPPorts = [ 24642 ];
|
2019-03-23 02:50:48 +01:00
|
|
|
allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
|
|
|
|
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
|
|
|
|
};
|
2019-05-04 13:47:21 +02:00
|
|
|
desktop.wms = [ "i3" ];
|
2019-03-23 02:50:48 +01:00
|
|
|
};
|
2019-04-18 07:40:47 +02:00
|
|
|
|
|
|
|
config.system.copySysConf = {
|
2019-09-29 08:09:26 +02:00
|
|
|
enable = false;
|
2019-04-18 07:40:47 +02:00
|
|
|
addToNixPath = false;
|
|
|
|
};
|
2019-03-23 02:50:48 +01:00
|
|
|
}
|