Move hosts to a dedicated folder

This commit is contained in:
Paul-Henri Froidmont 2023-03-20 22:35:11 +01:00
parent cf27e1ad6a
commit b08fc5a41e
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
14 changed files with 310 additions and 207 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, config, lib, ... }:
{
imports = [
./hardware-configuration.nix
../../profiles/base.nix
../../users
];
# Allow to externally control MPD
networking.firewall.allowedTCPPorts = [ 6600 ];
system.stateVersion = "19.09";
}