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