feat: try adding support to mount usb drives on plugging them in
This commit is contained in:
parent
467a13922d
commit
b1c545ab07
2 changed files with 6 additions and 3 deletions
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
|
./git.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -26,7 +27,7 @@
|
||||||
users.users.rhea = {
|
users.users.rhea = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Rhea";
|
description = "Rhea";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" "storage" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,12 +66,14 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
# wget
|
# wget
|
||||||
git
|
|
||||||
kitty
|
|
||||||
chromium
|
chromium
|
||||||
#home-manager
|
#home-manager
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.devmon.enable = true;
|
||||||
|
services.gvfs.enable = true;
|
||||||
|
services.udisks2.enable = true;
|
||||||
|
|
||||||
# Enable Flakes
|
# Enable Flakes
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue