mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 19:25:59 +01:00
Remove extra packages in nix module (#343)
Co-authored-by: Mihai Fufezan <fufexan@pm.me> Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
This commit is contained in:
parent
0eebf3ab16
commit
fd999100f0
1 changed files with 3 additions and 19 deletions
|
@ -27,25 +27,9 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
extraPackages = mkOption {
|
imports = [
|
||||||
type = with types; listOf package;
|
(mkRemovedOptionModule ["programs" "hyprland" "extraPackages"] "extraPackages has been removed. Use environment.systemPackages instead.")
|
||||||
default = with pkgs; [
|
|
||||||
kitty
|
|
||||||
wofi
|
|
||||||
swaybg
|
|
||||||
];
|
];
|
||||||
defaultText = literalExpression ''
|
|
||||||
with pkgs; [ kitty wofi swaybg ];
|
|
||||||
'';
|
|
||||||
example = literalExpression ''
|
|
||||||
with pkgs; [
|
|
||||||
alacritty wofi
|
|
||||||
]
|
|
||||||
'';
|
|
||||||
description = ''
|
|
||||||
Extra packages to be installed system wide.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
Loading…
Reference in a new issue