mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 01:20:40 +00:00
468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
31 lines
510 B
Nix
31 lines
510 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.xserver.windowManager.metacity;
|
|
inherit (pkgs) gnome;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.xserver.windowManager.metacity.enable = mkEnableOption "metacity";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.xserver.windowManager.session = singleton
|
|
{ name = "metacity";
|
|
start = ''
|
|
${gnome.metacity}/bin/metacity &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
|
|
environment.systemPackages = [ gnome.metacity ];
|
|
|
|
};
|
|
|
|
}
|