refactor(hosts): simplify configuration imports across hosts

This commit is contained in:
tux
2026-05-13 04:33:14 +05:30
parent 71aaf2d392
commit b649b974fa
15 changed files with 137 additions and 98 deletions

View File

@@ -2,7 +2,6 @@
{
flake.modules.nixos.arcturus =
{
pkgs,
hostName,
userName,
...
@@ -10,7 +9,6 @@
{
imports = with config.flake.modules.nixos; [
boot
hardware
networking
virtualisation
services
@@ -109,10 +107,6 @@
firewall.enable = false;
};
environment.systemPackages = with pkgs; [
nvtopPackages.full
];
system.stateVersion = "26.05";
};
}