8 lines
150 B
Nix
8 lines
150 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.gvfs.enable = true;
|
|
services.tumbler.enable = true;
|
|
environment.sessionVariables = {
|
|
NIXOS_OZONE_WL = "1";
|
|
};
|
|
}
|