-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
nixos/xfce4-14: init #66859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
nixos/xfce4-14: init #66859
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
157 changes: 157 additions & 0 deletions
157
nixos/modules/services/x11/desktop-managers/xfce4-14.nix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,157 @@ | ||
| { config, lib, pkgs, ... }: | ||
|
|
||
| with lib; | ||
|
|
||
| let | ||
| cfg = config.services.xserver.desktopManager.xfce4-14; | ||
| in | ||
|
|
||
| { | ||
| # added 2019-08-18 | ||
| # needed to preserve some semblance of UI familarity | ||
| # with original XFCE module | ||
| imports = [ | ||
| (mkRenamedOptionModule | ||
| [ "services" "xserver" "desktopManager" "xfce4-14" "extraSessionCommands" ] | ||
| [ "services" "xserver" "displayManager" "sessionCommands" ]) | ||
| ]; | ||
|
|
||
| options = { | ||
| services.xserver.desktopManager.xfce4-14 = { | ||
| enable = mkOption { | ||
| type = types.bool; | ||
| default = false; | ||
| description = "Enable the Xfce desktop environment."; | ||
| }; | ||
|
|
||
| # TODO: support thunar plugins | ||
| # thunarPlugins = mkOption { | ||
| # default = []; | ||
| # type = types.listOf types.package; | ||
| # example = literalExample "[ pkgs.xfce4-14.thunar-archive-plugin ]"; | ||
| # description = '' | ||
| # A list of plugin that should be installed with Thunar. | ||
| # ''; | ||
| # }; | ||
|
|
||
| noDesktop = mkOption { | ||
| type = types.bool; | ||
| default = false; | ||
| description = "Don't install XFCE desktop components (xfdesktop, panel and notification daemon)."; | ||
| }; | ||
|
|
||
| enableXfwm = mkOption { | ||
| type = types.bool; | ||
| default = true; | ||
| description = "Enable the XFWM (default) window manager."; | ||
| }; | ||
| }; | ||
| }; | ||
|
|
||
| config = mkIf cfg.enable { | ||
| environment.systemPackages = with pkgs.xfce4-14 // pkgs; [ | ||
| glib # for gsettings | ||
| gtk3.out # gtk-update-icon-cache | ||
|
|
||
| gnome3.adwaita-icon-theme | ||
| hicolor-icon-theme | ||
| tango-icon-theme | ||
| xfce4-icon-theme | ||
|
|
||
| desktop-file-utils | ||
| shared-mime-info # for update-mime-database | ||
|
|
||
| # For a polkit authentication agent | ||
| polkit_gnome | ||
|
|
||
| # Needed by Xfce's xinitrc script | ||
| xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/ | ||
|
|
||
| exo | ||
| garcon | ||
| gtk-xfce-engine | ||
| libxfce4ui | ||
| xfconf | ||
|
|
||
| mousepad | ||
| ristretto | ||
| xfce4-appfinder | ||
| xfce4-screenshooter | ||
| xfce4-session | ||
| xfce4-settings | ||
| xfce4-terminal | ||
|
|
||
| # TODO: resync patch for plugins | ||
| #(thunar.override { thunarPlugins = cfg.thunarPlugins; }) | ||
| thunar | ||
| ] # TODO: NetworkManager doesn't belong here | ||
| ++ optional config.networking.networkmanager.enable networkmanagerapplet | ||
| ++ optional config.hardware.pulseaudio.enable xfce4-pulseaudio-plugin | ||
| ++ optional config.powerManagement.enable xfce4-power-manager | ||
| ++ optional cfg.enableXfwm xfwm4 | ||
| ++ optionals (!cfg.noDesktop) [ | ||
| xfce4-panel | ||
| xfce4-notifyd | ||
| xfdesktop | ||
| ]; | ||
|
|
||
| environment.pathsToLink = [ | ||
| "/share/xfce4" | ||
| "/lib/xfce4" | ||
| "/share/gtksourceview-3.0" | ||
|
||
| "/share/gtksourceview-4.0" | ||
| ]; | ||
|
|
||
| # Use the correct gnome3 packageSet | ||
| networking.networkmanager.basePackages = mkIf config.networking.networkmanager.enable { | ||
| inherit (pkgs) networkmanager modemmanager wpa_supplicant crda; | ||
| inherit (pkgs.gnome3) networkmanager-openvpn networkmanager-vpnc | ||
| networkmanager-openconnect networkmanager-fortisslvpn | ||
| networkmanager-iodine networkmanager-l2tp; | ||
| }; | ||
|
|
||
| services.xserver.desktopManager.session = [{ | ||
| name = "xfce4-14"; | ||
| bgSupport = true; | ||
| start = '' | ||
| # Set GTK_PATH so that GTK+ can find the theme engines. | ||
| export GTK_PATH="${config.system.path}/lib/gtk-2.0:${config.system.path}/lib/gtk-3.0" | ||
|
|
||
| # Set GTK_DATA_PREFIX so that GTK+ can find the Xfce themes. | ||
| export GTK_DATA_PREFIX=${config.system.path} | ||
|
|
||
| ${pkgs.runtimeShell} ${pkgs.xfce4-14.xinitrc} & | ||
| waitPID=$! | ||
| ''; | ||
| }]; | ||
|
|
||
| services.xserver.updateDbusEnvironment = true; | ||
| services.xserver.gdk-pixbuf.modulePackages = [ pkgs.librsvg ]; | ||
|
|
||
| # Enable helpful DBus services. | ||
| services.udisks2.enable = true; | ||
| security.polkit.enable = true; | ||
| services.accounts-daemon.enable = true; | ||
| services.upower.enable = config.powerManagement.enable; | ||
| services.gnome3.glib-networking.enable = true; | ||
| services.gvfs.enable = true; | ||
| services.gvfs.package = pkgs.xfce.gvfs; | ||
| services.tumbler.enable = true; | ||
| services.dbus.packages = | ||
| optional config.services.printing.enable pkgs.system-config-printer; | ||
| services.xserver.libinput.enable = mkDefault true; # used in xfce4-settings-manager | ||
|
|
||
| # Enable default programs | ||
| programs.dconf.enable = true; | ||
|
|
||
| # Shell integration for VTE terminals | ||
| programs.bash.vteIntegration = mkDefault true; | ||
| programs.zsh.vteIntegration = mkDefault true; | ||
|
|
||
| # Systemd services | ||
| systemd.packages = with pkgs.xfce4-14; [ | ||
| thunar | ||
| ] ++ optional (!cfg.noDesktop) xfce4-notifyd; | ||
|
|
||
| }; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| import ./make-test.nix ({ pkgs, ...} : { | ||
| name = "xfce4-14"; | ||
|
|
||
| machine = | ||
| { pkgs, ... }: | ||
|
|
||
| { imports = [ ./common/user-account.nix ]; | ||
|
|
||
| services.xserver.enable = true; | ||
|
|
||
| services.xserver.displayManager.auto.enable = true; | ||
| services.xserver.displayManager.auto.user = "alice"; | ||
|
|
||
| services.xserver.desktopManager.xfce4-14.enable = true; | ||
| }; | ||
|
|
||
| testScript = | ||
| '' | ||
| $machine->waitForX; | ||
| $machine->waitForFile("/home/alice/.Xauthority"); | ||
| $machine->succeed("xauth merge ~alice/.Xauthority"); | ||
| $machine->waitForWindow(qr/xfce4-panel/); | ||
| $machine->sleep(10); | ||
|
|
||
| # Check that logging in has given the user ownership of devices. | ||
| $machine->succeed("getfacl /dev/snd/timer | grep -q alice"); | ||
|
|
||
| $machine->succeed("su - alice -c 'DISPLAY=:0.0 xfce4-terminal &'"); | ||
| $machine->waitForWindow(qr/Terminal/); | ||
| $machine->sleep(10); | ||
| $machine->screenshot("screen"); | ||
| ''; | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.