update && remove floorp & stylix && mkForce nfv theme && change kdenlive pkg name cause changed upstream
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 2m59s

This commit is contained in:
smayzy
2025-09-27 10:07:50 +02:00
parent 9c1ba99c88
commit 87a7013d51
13 changed files with 10 additions and 368 deletions
-1
View File
@@ -2,7 +2,6 @@
{
imports = [
./firefox.nix
./floorp.nix
./librewolf.nix
./chromium.nix
];
-20
View File
@@ -1,20 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.floorp.enable = mkOption {
type = types.bool;
default = false;
description = "floorp";
};
config = mkIf config.smayzy.floorp.enable {
environment.systemPackages = with pkgs; [ floorp ];
};
}