Marid: new machine init
This commit is contained in:
parent
2eb5762de3
commit
fe9ec52785
7 changed files with 329 additions and 0 deletions
81
machines/Marid/options.nix
Normal file
81
machines/Marid/options.nix
Normal file
|
@ -0,0 +1,81 @@
|
|||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
config.machine = {
|
||||
allowUnfree = true;
|
||||
hostName = "Marid";
|
||||
administrators = [
|
||||
{
|
||||
name = "derped";
|
||||
id = 1337;
|
||||
}
|
||||
];
|
||||
conffiles = [
|
||||
"etcfiles"
|
||||
"etcvars"
|
||||
"fonts"
|
||||
"networkmanager"
|
||||
"zsh"
|
||||
];
|
||||
pkgs = [
|
||||
"base"
|
||||
"extra"
|
||||
"mail_utils"
|
||||
"nvim"
|
||||
"nvim::cmp"
|
||||
"nvim::fugitive"
|
||||
"nvim::go"
|
||||
"nvim::harpoon"
|
||||
"nvim::hurl"
|
||||
"nvim::kanagawa-nvim"
|
||||
"nvim::lsp"
|
||||
"nvim::lsp::bash"
|
||||
"nvim::lsp::c"
|
||||
"nvim::lsp::go"
|
||||
"nvim::lsp::ltex"
|
||||
"nvim::lsp::lua"
|
||||
"nvim::lsp::markdown"
|
||||
"nvim::lsp::nix-nil"
|
||||
"nvim::lsp::python"
|
||||
"nvim::lsp::typescript"
|
||||
"nvim::lsp::yaml"
|
||||
"nvim::lualine"
|
||||
"nvim::nvim-highlight"
|
||||
"nvim::oil-nvim"
|
||||
"nvim::orgmode"
|
||||
# "nvim::sniprun"
|
||||
"nvim::telescope"
|
||||
"nvim::tmux-navigate"
|
||||
"nvim::treesitter"
|
||||
"nvim::trim"
|
||||
"nvim::undotree"
|
||||
"nvim::which-key"
|
||||
"cpp"
|
||||
];
|
||||
services = [
|
||||
"btrbk"
|
||||
"btrfs"
|
||||
"tmux"
|
||||
"pipewire"
|
||||
"docker"
|
||||
"podman"
|
||||
"ollama"
|
||||
"virt-manager"
|
||||
"virtualbox"
|
||||
"cups"
|
||||
"desktop"
|
||||
"desktop::sway"
|
||||
# "mariaDB"
|
||||
];
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowPing = true;
|
||||
allowedUDPPorts = [ ];
|
||||
allowedTCPPorts = [ ];
|
||||
allowedUDPPortRanges = [ ];
|
||||
allowedTCPPortRanges = [ ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue