whole bunch of stuff

This commit is contained in:
atagen 2025-01-03 16:14:31 +11:00
parent bafb226314
commit 4e99a0e323
43 changed files with 555 additions and 868 deletions

View file

@ -15,7 +15,6 @@ in {
./modules/theming.nix
./modules/niri.nix
./util/ez.nix
./util/flatpak.nix
./util/murex.nix
./util/name.nix
inputs.nix-index-database.hmModules.nix-index
@ -50,10 +49,11 @@ in {
};
home.packages = let
inherit (pkgs.rice) icons fonts;
inherit (pkgs.rice) icons fonts cursor;
in
fonts.pkgs
++ icons.pkgs;
++ icons.pkgs
++ [cursor.package];
systemd.user.targets.tray = {
Unit = {
@ -91,6 +91,6 @@ in {
systemd.user.startServices = "sd-switch";
ezServices = {
ckb-next = "${getExe inputs.nixpkgs-stable.legacyPackages.x86_64-linux.ckb-next} -c -b";
ckb-next = "${getExe pkgs.ckb-next} -c -b";
};
}