26 lines
541 B
Nix
26 lines
541 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./dns.nix
|
|
./radicale.nix
|
|
./glance.nix
|
|
./packages.nix
|
|
./hardware-configuration.nix
|
|
../../modules/userapps/utils.nix
|
|
../../modules/common/nix.nix
|
|
../../modules/raspberrypi.nix
|
|
../../modules/common/networking.nix
|
|
../../modules/common/shell.nix
|
|
../../modules/common/wine.nix
|
|
./user.nix
|
|
];
|
|
networking.hostName = "box";
|
|
networking.firewall.enable = false;
|
|
# This will be overridden by system/default.nix
|
|
system.stateVersion = "25.05";
|
|
}
|