nixos-config/system/desktop.nix
Felix Schröter 8dcece0836
feat: restructure system config
Create common system config and derive common server & desktop configs
from it.
2022-06-26 13:14:04 +02:00

9 lines
160 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./common.nix ./fonts.nix ./sound.nix ./vpn.nix ];
services.printing.enable = true;
services.fwupd.enable = true;
}