nixos-configs/hosts/nixos-desktop/default.nix

14 lines
249 B
Nix
Raw Normal View History

2023-03-20 22:35:11 +01:00
{ pkgs, config, lib, ... }:
{
imports = [
./hardware-configuration.nix
../../profiles/base.nix
../../users
];
# Allow to externally control MPD
networking.firewall.allowedTCPPorts = [ 6600 ];
system.stateVersion = "19.09";
}