Add new machine Marid.
This commit is contained in:
parent
e8f26ac86e
commit
47500b78e3
6 changed files with 175 additions and 3 deletions
67
machines/Marid/options.nix
Normal file
67
machines/Marid/options.nix
Normal file
|
@ -0,0 +1,67 @@
|
|||
{ 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"
|
||||
"emacs"
|
||||
"emacs::company"
|
||||
"emacs::docker"
|
||||
"emacs::doom-modeline"
|
||||
"emacs::doom-themes"
|
||||
"emacs::elpy"
|
||||
"emacs::fcitx"
|
||||
"emacs::flycheck"
|
||||
"emacs::flyspell"
|
||||
"emacs::undo-tree"
|
||||
"emacs::lsp"
|
||||
"emacs::magit"
|
||||
"emacs::mu4e"
|
||||
"emacs::nix-mode"
|
||||
"emacs::org"
|
||||
"emacs::php-mode"
|
||||
"emacs::web-mode"
|
||||
"emacs::yasnippet"
|
||||
"extra"
|
||||
"mail_utils"
|
||||
"python3"
|
||||
"xpkgs"
|
||||
];
|
||||
services = [
|
||||
"docker"
|
||||
"desktop"
|
||||
"udev"
|
||||
"fprintd"
|
||||
];
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowPing = true;
|
||||
allowedUDPPorts = [ ];
|
||||
allowedTCPPorts = [ ];
|
||||
allowedUDPPortRanges = [ ];
|
||||
allowedTCPPortRanges = [ ];
|
||||
};
|
||||
desktop.wms = [ "none+i3" "i3" ];
|
||||
};
|
||||
|
||||
config.system.copySysConf = {
|
||||
enable = false;
|
||||
addToNixPath = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue