nixos-config/modules/core/default.nix

23 lines
670 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 =
2025-03-22 22:49:56 +01:00
[(import ./../../variables.nix)] # Does not really fit here but I have no clue where else
++ [(import ./docker.nix)]
++ [(import ./hardware.nix)]
++ [(import ./displaylink.nix)]
# ++ [(import ./printing.nix)]
++ [(import ./xserver.nix)]
2024-06-21 20:43:12 +02:00
++ [(import ./network.nix)]
++ [(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)]
++ [(import ./user.nix)]
++ [(import ./bluetooth.nix)]
++ [(import ./yubikey.nix)]
++ [(import ./steam.nix)]
++ [(import ./wayland.nix)];
2023-11-05 11:40:44 +01:00
}