Fix flameshot pkgs issue

This commit is contained in:
KnightArtorias 2026-06-18 18:50:40 -04:00
parent 7f0cca311d
commit 63adf38a35

View file

@ -1,5 +1,13 @@
{ {
flake.nixosModules.flameshot = { flake.nixosModules.flameshot = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
flameshot
grim
slurp
satty
wl-copy
];
services.flameshot = { services.flameshot = {
enable = true; enable = true;
General = { General = {
@ -10,12 +18,4 @@
}; };
}; };
environment.systemPackages = [
flameshot
grim
slurp
satty
wl-copy
];
} }