35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
|
|
{ config, pkgs, ... }:
|
||
|
|
{
|
||
|
|
# xdg = {
|
||
|
|
# enable = true;
|
||
|
|
# userDirs = {
|
||
|
|
# enable = true;
|
||
|
|
# createDirectories = true;
|
||
|
|
# documents = "${config.home.homeDirectory}/Documents";
|
||
|
|
# music = "${config.home.homeDirectory}/Music";
|
||
|
|
# videos = "${config.home.homeDirectory}/Videos";
|
||
|
|
# desktop = "${config.home.homeDirectory}/Desktop";
|
||
|
|
# download = "${config.home.homeDirectory}/Downloads";
|
||
|
|
# pictures = "${config.home.homeDirectory}/Pictures";
|
||
|
|
# templates = "${config.home.homeDirectory}/Templates";
|
||
|
|
# publicShare = "${config.home.homeDirectory}/Public";
|
||
|
|
# };
|
||
|
|
# mimeApps.enable = true;
|
||
|
|
# portal = {
|
||
|
|
# enable = true;
|
||
|
|
# configPackages = [ pkgs.xdg-desktop-portal-hyprland ];
|
||
|
|
# extraPortals = [ pkgs.xdg-desktop-portal-hyprland pkgs.kdePackages.xdg-desktop-portal-kde ];
|
||
|
|
# xdgOpenUsePortal = true;
|
||
|
|
# # wlr.enable = true;
|
||
|
|
# };
|
||
|
|
# configHome = "~/.config";
|
||
|
|
# dataHome = "~/.local/share";
|
||
|
|
# stateHome = "~/.local/state";
|
||
|
|
# cacheHome = "~/.cache";
|
||
|
|
|
||
|
|
# systemDirs = {
|
||
|
|
# config = [ "/etc/xdg" ];
|
||
|
|
# data = [ "/usr/share" "/usr/local/share" ];
|
||
|
|
# };
|
||
|
|
# };
|
||
|
|
}
|