refactor: complete rewrite

This commit is contained in:
ooks-io 2024-10-23 23:46:25 +13:00
parent 19a4bbda3c
commit 8e81943cf9
399 changed files with 3396 additions and 8042 deletions

View file

@ -1,42 +0,0 @@
{
pkgs,
lib,
...
}: let
inherit (lib) mkDefault;
in {
imports = [
./hardware-configuration.nix
];
ooknet.host = {
name = "ooksnode";
type = "vm";
role = "server";
profiles = ["console-tools"];
admin = {
name = "ooks";
shell = "fish";
homeManager = true;
};
networking = {
tailscale = {
enable = true;
client = true;
autoconnect = true;
};
};
hardware = {
cpu.type = "intel";
features = [
"ssd"
];
};
};
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
};
system.stateVersion = mkDefault "23.11";
}