feat: try adding support to mount usb drives on plugging them in

This commit is contained in:
EinEtwas 2024-10-13 20:07:23 +02:00
parent 467a13922d
commit b1c545ab07
2 changed files with 6 additions and 3 deletions

View file

@ -19,6 +19,7 @@
imports = [
./hyprland.nix
./git.nix
];
};
};
@ -26,7 +27,7 @@
users.users.rhea = {
isNormalUser = true;
description = "Rhea";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "networkmanager" "wheel" "storage" ];
shell = pkgs.zsh;
};

View file

@ -66,12 +66,14 @@
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
git
kitty
chromium
#home-manager
];
services.devmon.enable = true;
services.gvfs.enable = true;
services.udisks2.enable = true;
# Enable Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];