machines: init Tehom

This commit is contained in:
Kevin Baensch 2025-07-19 11:57:58 +02:00
parent b6c6a42d1e
commit 7a6ace2ef0
Signed by: derped
GPG key ID: C0F1D326C7626543
6 changed files with 247 additions and 0 deletions

View file

@ -0,0 +1,68 @@
_:
{
machine = {
allowUnfree = true;
hostName = "Tehom";
networkD = {
enable = true;
waitOnline = false;
};
users = [
{
name = "derped";
id = 1337;
isAdmin = true;
services = [
"kdeconnect"
];
}
];
conffiles = [
"etcvars"
"fonts"
"networkmanager"
"zsh"
];
pkgs = [
"base"
"python3"
"xpkgs"
];
services = [
"appimage"
"btrfs"
"gamescope"
"handheld-daemon"
"home"
"impermanence"
"nvim"
"nvim::blink"
"nvim::fugitive"
"nvim::harpoon"
"nvim::kanagawa-nvim"
"nvim::lsp"
"nvim::lsp::bash"
"nvim::lsp::harper"
"nvim::lsp::lua"
"nvim::lsp::nix-nil"
"nvim::nvim-highlight"
"nvim::oil-nvim"
"nvim::telescope"
"nvim::tmux-navigate"
"nvim::treesitter"
"nvim::trim"
"nvim::undotree"
"nvim::which-key"
"openssh"
"pipewire"
"plasmamobile"
"stylix"
"tmux"
];
firewall = {
enable = true;
allowPing = true;
};
};
}