diff options
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/desktop.nix | 2 | ||||
-rw-r--r-- | nixos/modules/develop.nix | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix index c3047cc..ff2a541 100644 --- a/nixos/modules/desktop.nix +++ b/nixos/modules/desktop.nix @@ -218,7 +218,7 @@ in { networking.firewall.allowedTCPPorts = [5357]; networking.firewall.allowedUDPPorts = [3702]; - fonts.fonts = with pkgs; [ + fonts.packages = with pkgs; [ arkpandora_ttf corefonts dejavu_fonts diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix index 5b2bd6e..fa4034d 100644 --- a/nixos/modules/develop.nix +++ b/nixos/modules/develop.nix @@ -132,6 +132,9 @@ with lib; { SUBSYSTEMS=="usb", ATTRS{idVendor}=="1366", ATTRS{idProduct}=="0105", MODE:="0660", GROUP="develop", SYMLINK+="jlink_%n" ''; + virtualisation.containers = { + enable = true; + }; virtualisation.docker = { enable = true; autoPrune.enable = true; |