fix: move hostname to host itself

This commit is contained in:
Ahwx 2024-07-15 07:54:26 +02:00
parent 7b3f4c3e8f
commit 84ce300e0e
2 changed files with 13 additions and 13 deletions

View file

@ -1,18 +1,19 @@
{ ... }:
{
imports =
[(import ./bootloader.nix)]
++ [(import ./hardware.nix)]
++ [(import ./xserver.nix)]
# [(import ./bootloader.nix)]
[(import ./hardware.nix)]
# ++ [(import ./xserver.nix)]
++ [(import ./network.nix)]
++ [(import ./pipewire.nix)]
# ++ [(import ./pipewire.nix)]
++ [(import ./program.nix)]
++ [(import ./sshd.nix)]
++ [(import ./security.nix)]
++ [(import ./services.nix)]
++ [(import ./system.nix)]
++ [(import ./user.nix)]
++ [(import ./bluetooth.nix)]
++ [(import ./yubikey.nix)]
++ [(import ./steam.nix)]
++ [(import ./wayland.nix)];
++ [(import ./user.nix)];
# ++ [(import ./bluetooth.nix)]
# ++ [(import ./yubikey.nix)]
# ++ [(import ./steam.nix)]
# ++ [(import ./wayland.nix)];
}