nix/home-manager/common/desktops/xfce/default.nix

68 lines
2.4 KiB
Nix
Raw Normal View History

2024-03-25 01:46:12 +01:00
{ lib, ... }: {
xdg.configFile."displays" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/displays.xml";
text = lib.readFile "xfce/xfconf/displays.xml";
};
xdg.configFile."thunar" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/thunar.xml";
text = lib.readFile "xfce/xfconf/thunar.xml";
};
xdg.configFile."xfce4-appfinder" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml";
text = lib.readFile "xfce/xfconf/xfce4-appfinder.xml";
};
xdg.configFile."xfce4-desktop" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml";
text = lib.readFile "xfce/xfconf/xfce4-desktop.xml";
};
xdg.configFile."xfce4-keyboard-shortcuts" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml";
text = lib.readFile "xfce/xfconf/xfce4-keyboard-shortcuts.xml";
};
xdg.configFile."xfce4-notifyd" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml";
text = lib.readFile "xfce/xfconf/xfce4-notifyd.xml";
};
xdg.configFile."xfce4-panel" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml";
text = lib.readFile "xfce/xfconf/xfce4-panel.xml";
};
xdg.configFile."xfce4-power-manager" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml";
text = lib.readFile "xfce/xfconf/xfce4-power-manager.xml";
};
xdg.configFile."xfce4-screenshotter" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-screenshotter.xml";
text = lib.readFile "xfce/xfconf/xfce4-screenshotter.xml";
};
xdg.configFile."xfce4-settings-editor" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-editor.xml";
text = lib.readFile "xfce/xfconf/xfce4-settings-editor.xml";
};
xdg.configFile."xfce4-terminal" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml";
text = lib.readFile "xfce/xfconf/xfce4-terminal.xml";
};
xdg.configFile."xfwm4" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml";
text = lib.readFile "xfce/xfconf/xfwm4.xml";
};
xdg.configFile."xsettings.xml" = {
enable = true;
target = "xfce4/xfconf/xfce-perchannel-xml/xsettings.xml.xml";
text = lib.readFile "xfce/xfconf/xsettings.xml.xml";
};
2024-03-22 03:37:18 +01:00
}