nixos-config/modules/core/default.nix

20 lines
521 B
Nix
Raw Normal View History

2024-06-21 09:36:07 +02:00
{ ... }:
2023-11-05 11:40:44 +01:00
{
2024-04-13 13:43:59 +02:00
imports =
2024-07-15 07:54:26 +02:00
# [(import ./bootloader.nix)]
[(import ./hardware.nix)]
# ++ [(import ./xserver.nix)]
2024-06-21 20:43:12 +02:00
++ [(import ./network.nix)]
2024-07-15 07:54:26 +02:00
# ++ [(import ./pipewire.nix)]
2024-06-21 20:43:12 +02:00
++ [(import ./program.nix)]
2024-07-15 07:54:26 +02:00
++ [(import ./sshd.nix)]
2024-06-21 20:43:12 +02:00
++ [(import ./security.nix)]
++ [(import ./services.nix)]
++ [(import ./system.nix)]
2024-07-15 07:54:26 +02:00
++ [(import ./user.nix)];
# ++ [(import ./bluetooth.nix)]
# ++ [(import ./yubikey.nix)]
# ++ [(import ./steam.nix)]
# ++ [(import ./wayland.nix)];
2023-11-05 11:40:44 +01:00
}