17 lines
234 B
Nix
17 lines
234 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./users.nix
|
|
./networking.nix
|
|
./time.nix
|
|
./system.nix
|
|
./boot.nix
|
|
./dnsmasq.nix
|
|
./ssh.nix
|
|
];
|
|
services.cockpit = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|