mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
11 lines
257 B
Nix
11 lines
257 B
Nix
{ ... }:
|
|
{
|
|
imports =
|
|
[ (import ./hardware.nix) ]
|
|
++ [ (import ./program.nix) ]
|
|
++ [ (import ./sshd.nix) ]
|
|
++ [ (import ./security.nix) ]
|
|
++ [ (import ./services.nix) ]
|
|
++ [ (import ./system.nix) ]
|
|
++ [ (import ./user.nix) ];
|
|
}
|