my nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove cursor theme for now (buggy), add udev rules for usbasp

chfour 86bd5289 532c130f

+15 -5
+9
machines/foxbox/default.nix
··· 39 39 enableSSHSupport = true; 40 40 }; 41 41 42 + services.pcscd.enable = true; 43 + 42 44 hardware.rtl-sdr.enable = true; 45 + 46 + services.udev.packages = [ 47 + (pkgs.writeTextDir "/etc/udev/rules.d/usbasp.rules" '' 48 + # USBasp 49 + ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", MODE="0666", GROUP="dialout" 50 + '') 51 + ]; 43 52 44 53 programs.adb.enable = true; 45 54
+6 -5
users/chfour/env-gnome.nix
··· 118 118 name = "adw-gtk3-dark"; 119 119 package = pkgs.adw-gtk3; 120 120 }; 121 - 122 - cursorTheme = { 123 - name = "Vanilla-DMZ"; 124 - package = pkgs.vanilla-dmz; 125 - }; 121 + 122 + # buggy? 123 + #cursorTheme = { 124 + # name = "Vanilla-DMZ"; 125 + # package = pkgs.vanilla-dmz; 126 + #}; 126 127 }; 127 128 }