Kieran's opinionated (and probably slightly dumb) nix config

feat: automount usb disks

+22
+1
home-manager/dots/hyprland.conf
··· 14 14 exec-once = wluma 15 15 exec-once = waybar 16 16 exec-once = hypridle 17 + exec-once = udiskie 17 18 18 19 exec-once=[workspace 8 silent] slack 19 20 exec-once=[workspace 9 silent] spotify
+16
home-manager/home.nix
··· 90 90 enable = true; 91 91 }; 92 92 93 + services.udiskie = { 94 + enable = true; 95 + settings = { 96 + program_options = { 97 + udisks_version = 2; 98 + tray = false; 99 + }; 100 + notifications = { 101 + device_unmounted = false; 102 + device_added = -1; 103 + device_removed = -1; 104 + device_mounted = -1; 105 + }; 106 + }; 107 + }; 108 + 93 109 # git config 94 110 programs.git = { 95 111 enable = true;
+5
moonlark/configuration.nix
··· 95 95 ]; 96 96 }) 97 97 pkgs.github-desktop 98 + pkgs.udiskie 98 99 ]; 99 100 100 101 services.gnome.gnome-keyring.enable = true; ··· 203 204 PasswordAuthentication = false; 204 205 }; 205 206 }; 207 + 208 + services.devmon.enable = true; 209 + services.gvfs.enable = true; 210 + services.udisks2.enable = true; 206 211 207 212 # Requires at least 5.16 for working wi-fi and bluetooth. 208 213 # https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89