uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
61
nixos/modules/services/x11/window-managers/wmderland.nix
Normal file
61
nixos/modules/services/x11/window-managers/wmderland.nix
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.xserver.windowManager.wmderland;
|
||||
in
|
||||
|
||||
{
|
||||
options.services.xserver.windowManager.wmderland = {
|
||||
enable = mkEnableOption "wmderland";
|
||||
|
||||
extraSessionCommands = mkOption {
|
||||
default = "";
|
||||
type = types.lines;
|
||||
description = ''
|
||||
Shell commands executed just before wmderland is started.
|
||||
'';
|
||||
};
|
||||
|
||||
extraPackages = mkOption {
|
||||
type = with types; listOf package;
|
||||
default = with pkgs; [
|
||||
rofi
|
||||
dunst
|
||||
light
|
||||
hsetroot
|
||||
feh
|
||||
rxvt-unicode
|
||||
];
|
||||
defaultText = literalExpression ''
|
||||
with pkgs; [
|
||||
rofi
|
||||
dunst
|
||||
light
|
||||
hsetroot
|
||||
feh
|
||||
rxvt-unicode
|
||||
]
|
||||
'';
|
||||
description = ''
|
||||
Extra packages to be installed system wide.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.xserver.windowManager.session = singleton {
|
||||
name = "wmderland";
|
||||
start = ''
|
||||
${cfg.extraSessionCommands}
|
||||
|
||||
${pkgs.wmderland}/bin/wmderland &
|
||||
waitPID=$!
|
||||
'';
|
||||
};
|
||||
environment.systemPackages = [
|
||||
pkgs.wmderland pkgs.wmderlandc
|
||||
] ++ cfg.extraPackages;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue