mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
12 lines
211 B
Nix
12 lines
211 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-disk-utility
|
|
udiskie # removable disk automounter for udisks
|
|
(pkgs.callPackage ../../modules/scripts/mountkdrive.nix {})
|
|
];
|
|
}
|