34 lines
832 B
Nix
34 lines
832 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
{
|
||
config,
|
||
pkgs,
|
||
lib,
|
||
...
|
||
}: {
|
||
imports = [
|
||
./backup.nix
|
||
./hardware-configuration.nix
|
||
./home-controller.nix
|
||
./paperless.nix
|
||
];
|
||
|
||
time.timeZone = "Europe/Berlin";
|
||
|
||
boot.plymouth.enable = lib.mkForce false;
|
||
pub-solar.nextcloud.enable = lib.mkForce false;
|
||
|
||
networking.useDHCP = false;
|
||
networking.interfaces.eth0.useDHCP = true;
|
||
networking.interfaces.wlan0.useDHCP = false;
|
||
networking.networkmanager.enable = false;
|
||
|
||
networking.firewall.allowedTCPPorts = [3689];
|
||
networking.firewall.allowedUDPPorts = [1900];
|
||
|
||
virtualisation.podman.enable = true;
|
||
|
||
system.stateVersion = "22.11";
|
||
}
|