install pano extension from nur

This commit is contained in:
2024-12-04 22:33:39 -06:00
parent a655b2fd00
commit e5df27c54b

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
services = {
gvfs.enable = true;
@@ -42,12 +42,14 @@
appindicator # applets for open applications
reading-strip # like putting a finger on every line I read
tactile # window manager
pano # clipboard manager
freon # hardware temperature monitor
gamemode-indicator-in-system-settings # I guess I'm a gamer now?
burn-my-windows
burn-my-windows # special effects for when closing windows
;
};
otherPackages = [
config.nur.repos.zzzsy.gnome-shell-extension-pano
];
in
packages ++ extensions;
packages ++ extensions ++ otherPackages;
}