feat: restructure system config

Create common system config and derive common server & desktop configs
from it.
This commit is contained in:
Felix Schröter 2022-06-26 13:12:01 +02:00
parent 4af1b35392
commit 8dcece0836
Signed by: felschr
GPG key ID: 671E39E6744C807D
6 changed files with 22 additions and 19 deletions

8
system/desktop.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
imports = [ ./common.nix ./fonts.nix ./sound.nix ./vpn.nix ];
services.printing.enable = true;
services.fwupd.enable = true;
}