12 lines
176 B
Nix
12 lines
176 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
|
|
services.udisks2 = {
|
|
enable = true;
|
|
mountOnMedia = true;
|
|
};
|
|
}
|