inputs: prefer nixpkgs packages
This commit is contained in:
parent
c2127e0047
commit
37a5bfee0f
4 changed files with 5 additions and 1 deletions
|
|
@ -57,6 +57,7 @@
|
|||
config = lib.mkIf config.mods.anyrun.enable (
|
||||
lib.optionalAttrs (options ? home.packages) {
|
||||
programs.anyrun = lib.mkForce {
|
||||
package = pkgs.anyrun;
|
||||
enable = true;
|
||||
config =
|
||||
if config.mods.anyrun.useDefaultConfig
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
};
|
||||
greeterCommand = lib.mkOption {
|
||||
default = "${
|
||||
lib.getExe inputs.hyprland.packages.${config.conf.system}.hyprland
|
||||
lib.getExe pkgs.hyprland
|
||||
} --config /etc/greetd/hyprgreet.conf";
|
||||
example = "${
|
||||
lib.getExe pkgs.cage
|
||||
|
|
|
|||
|
|
@ -160,6 +160,7 @@ in {
|
|||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
package = mkDashDefault pkgs.hyprland;
|
||||
enable = true;
|
||||
settings =
|
||||
if config.mods.hypr.hyprland.useDefaultConfig
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
mkDashDefault,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
|
|
@ -176,6 +177,7 @@ in {
|
|||
config = lib.mkIf (config.mods.ironbar.enable || config.mods.hypr.hyprland.useIronbar) (
|
||||
lib.optionalAttrs (options ? programs.ironbar) {
|
||||
programs.ironbar = {
|
||||
package = mkDashDefault pkgs.ironbar;
|
||||
enable = true;
|
||||
style =
|
||||
if config.mods.ironbar.useDefaultCss
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue