mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
17 lines
483 B
Nix
17 lines
483 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 ./wayland.nix) ];
|
|
# ++ [ (import ./virtualization.nix) ];
|
|
}
|