Skip to content

Commit

Permalink
flake.lock: update
Browse files Browse the repository at this point in the history
Migrate broken overlays
  • Loading branch information
khaneliman committed May 28, 2024
1 parent 70b1c91 commit 18a9eb7
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 23 deletions.
74 changes: 56 additions & 18 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};

waybar = {
url = "github:Alexays/Waybar";
inputs.nixpkgs.follows = "nixpkgs";
};

# Yubikey Guide
yubikey-guide = {
url = "github:drduh/YubiKey-Guide";
Expand Down
4 changes: 2 additions & 2 deletions modules/home/programs/graphical/bars/waybar/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let
mkMerge
;
inherit (lib.${namespace}) mkBoolOpt;
inherit (inputs) nixpkgs-wayland;
inherit (inputs) waybar;

cfg = config.${namespace}.programs.graphical.bars.waybar;

Expand Down Expand Up @@ -95,7 +95,7 @@ in

programs.waybar = {
enable = true;
package = nixpkgs-wayland.packages.${system}.waybar;
package = waybar.packages.${system}.waybar;
systemd.enable = true;

# TODO: make dynamic / support different number of.graphical.bars etc
Expand Down
7 changes: 4 additions & 3 deletions modules/home/suites/wlroots/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
config,
lib,
inputs,
system,
lib,
namespace,
pkgs,
system,
...
}:
let
Expand All @@ -21,9 +22,9 @@ in
config = mkIf cfg.enable {
home.packages = [
nixpkgs-wayland.packages.${system}.wdisplays
nixpkgs-wayland.packages.${system}.wl-screenrec
nixpkgs-wayland.packages.${system}.wl-clipboard
nixpkgs-wayland.packages.${system}.wlr-randr
pkgs.wl-screenrec
];

khanelinix = {
Expand Down

0 comments on commit 18a9eb7

Please sign in to comment.