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

68 lines
2.4 KiB
Nix
Raw Normal View History

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