mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
18 lines
491 B
Nix
18 lines
491 B
Nix
{ ... }:
|
|
{
|
|
imports =
|
|
[(import ./bootloader.nix)]
|
|
++ [(import ./hardware.nix)]
|
|
++ [(import ./xserver.nix)]
|
|
++ [(import ./network.nix)]
|
|
++ [(import ./pipewire.nix)]
|
|
++ [(import ./program.nix)]
|
|
++ [(import ./security.nix)]
|
|
++ [(import ./services.nix)]
|
|
++ [(import ./system.nix)]
|
|
++ [(import ./user.nix)]
|
|
++ [(import ./bluetooth.nix)]
|
|
++ [(import ./yubikey.nix)]
|
|
++ [(import ./wayland.nix)];
|
|
# ++ [ (import ./virtualization.nix) ];
|
|
}
|