He sudo on my nixos-rebuild till I switch
0

Configure Feed

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

Modularize filesystem junk (udisks2 & gvfs)

Madeline Hashcube (Mar 22, 2026, 5:25 PM -0500) df623245 cf93666f

+8 -8
+2
flake.nix
··· 75 75 ./modules/i18n.nix 76 76 ./modules/esp.nix 77 77 ./modules/fonts.nix 78 + ./modules/fsj.nix 78 79 { 79 80 80 81 home-manager.useGlobalPkgs = true; ··· 122 123 ./modules/i18n.nix 123 124 ./modules/esp.nix 124 125 ./modules/fonts.nix 126 + ./modules/fsj.nix 125 127 { 126 128 home-manager.useGlobalPkgs = true; 127 129 home-manager.useUserPackages = true;
+6
modules/fsj.nix
··· 1 + { ... }: 2 + 3 + { 4 + services.gvfs.enable = true; 5 + services.udisks2.enable = true; 6 + }
-8
configurations/hosts/magames-desktop/configuration.nix
··· 60 60 # Enable touchpad support (enabled default in most desktopManager). 61 61 # services.xserver.libinput.enable = true; 62 62 63 - # Define a user account. Don't forget to set a password with ‘passwd’. 64 - 65 63 # Allow unfree packages and accept Android SDK License 66 64 nixpkgs.config = { 67 65 allowUnfree = true; ··· 84 82 security.polkit.enable = true; 85 83 86 84 nix.settings.experimental-features = [ "nix-command" "flakes" ]; 87 - 88 - # List packages installed in system profile. To:want search, run: 89 - # $ nix search wget 90 - services.gvfs.enable = true; 91 - services.udisks2.enable = true; 92 - 93 85 94 86 xdg.portal.enable = true; 95 87