nixpkgs/nixos/modules/services/x11/desktop-managers/maxx.nix

32 lines
680 B
Nix
Raw Normal View History

2017-07-04 10:42:53 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
xcfg = config.services.xserver;
cfg = xcfg.desktopManager.maxx;
in {
options.services.xserver.desktopManager.maxx = {
enable = mkEnableOption "MaXX desktop environment";
};
config = mkIf cfg.enable {
2017-07-04 10:42:53 +00:00
environment.systemPackages = [ pkgs.maxx ];
2019-04-14 06:51:29 +00:00
# there is hardcoded path in binaries
system.activationScripts.setup-maxx = ''
mkdir -p /opt
ln -sfn ${pkgs.maxx}/opt/MaXX /opt
'';
2017-07-04 10:42:53 +00:00
services.xserver.desktopManager.session = [
{ name = "MaXX";
start = ''
exec ${pkgs.maxx}/opt/MaXX/etc/skel/Xsession.dt
'';
}];
};
meta.maintainers = [ maintainers.gnidorah ];
}