Felix Schröter
8dcece0836
Create common system config and derive common server & desktop configs from it.
9 lines
160 B
Nix
9 lines
160 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./common.nix ./fonts.nix ./sound.nix ./vpn.nix ];
|
|
|
|
services.printing.enable = true;
|
|
services.fwupd.enable = true;
|
|
}
|