diff options
author | Karel Kočí <cynerd@email.cz> | 2023-08-03 06:51:12 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-08-03 06:51:12 +0200 |
commit | 4ebb6f233bf8d7b5a5887aa023a909b0c22609bf (patch) | |
tree | ddd7b0c4bcb1f83018c7340d43486712aad75460 /nixos/modules | |
parent | 4a6bb6ba158c9821adbac15bfdcb829bf5cc2d2e (diff) | |
download | nixos-personal-4ebb6f233bf8d7b5a5887aa023a909b0c22609bf.tar.gz nixos-personal-4ebb6f233bf8d7b5a5887aa023a909b0c22609bf.tar.bz2 nixos-personal-4ebb6f233bf8d7b5a5887aa023a909b0c22609bf.zip |
Update
Diffstat (limited to 'nixos/modules')
-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; |