fvwm3: nixos module
This commit is contained in:
parent
cd43f8b8bd
commit
bef8e4df1d
@ -20,6 +20,7 @@ in
|
|||||||
./exwm.nix
|
./exwm.nix
|
||||||
./fluxbox.nix
|
./fluxbox.nix
|
||||||
./fvwm2.nix
|
./fvwm2.nix
|
||||||
|
./fvwm3.nix
|
||||||
./herbstluftwm.nix
|
./herbstluftwm.nix
|
||||||
./i3.nix
|
./i3.nix
|
||||||
./jwm.nix
|
./jwm.nix
|
||||||
|
35
nixos/modules/services/x11/window-managers/fvwm3.nix
Normal file
35
nixos/modules/services/x11/window-managers/fvwm3.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.xserver.windowManager.fvwm3;
|
||||||
|
inherit (pkgs) fvwm3;
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
###### interface
|
||||||
|
|
||||||
|
options = {
|
||||||
|
services.xserver.windowManager.fvwm3 = {
|
||||||
|
enable = mkEnableOption "Fvwm3 window manager";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
###### implementation
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.xserver.windowManager.session = singleton
|
||||||
|
{ name = "fvwm3";
|
||||||
|
start =
|
||||||
|
''
|
||||||
|
${fvwm3}/bin/fvwm3 &
|
||||||
|
waitPID=$!
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ fvwm3 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user