updating to make hyprland use eww now that eww can use a systray

Also including tokei and scc to count code in my projects
This commit is contained in:
Chris Cochrun 2024-04-10 06:29:02 -05:00
parent 587379ceea
commit a1a62a54c1
7 changed files with 148 additions and 343 deletions

View file

@ -41,9 +41,22 @@
# url = "github:nixified-ai/flake";
# inputs.nixpkgs.follows = "nixpkgs";
# };
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, nixpkgs-stable, home-manager, hyprland, nixos-hardware, emacs, nix-bitcoin, libre-presenter, anyrun, ... }:
outputs = { nixpkgs,
nixpkgs-stable,
home-manager,
hyprland,
nixos-hardware,
emacs,
nix-bitcoin,
libre-presenter,
eww,
rust-overlay, ... }:
let
system = "x86_64-linux";
username = "chris";
@ -52,6 +65,8 @@
config = { allowUnfree = true; };
overlays = [
emacs.overlays.default
rust-overlay.overlays.default
eww.overlays.default
];
};