fix flutter flake

This commit is contained in:
Nico
2025-01-17 00:06:13 +01:00
parent e5f34cd2e9
commit 6246713cf0
34 changed files with 1074 additions and 319 deletions

16
packages/rofi/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ pkgs, config, lib,... }:
{
home.packages = with pkgs; [
rofi-screenshot
rofi-power-menu
];
programs.rofi = {
enable = true;
theme = "/etc/nixos/packages/rofi/themes/catppuccin-mocha";
plugins = [
pkgs.rofi-power-menu
];
};
}