mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-26 07:43:45 +01:00
15 lines
201 B
Nix
15 lines
201 B
Nix
|
{ pkgs, lib, config, options, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./general.nix
|
||
|
./haveged.nix
|
||
|
./network.nix
|
||
|
./openssh.nix
|
||
|
./shells.nix
|
||
|
./sudo.nix
|
||
|
./timesyncd.nix
|
||
|
./users.nix
|
||
|
];
|
||
|
}
|