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 -1
View File
@@ -35,7 +35,7 @@ in
};
theme = {
enable = true;
name = lib.mkDefault "dracula";
name = lib.mkForce "dracula";
};
treesitter.enable = true;
statusline.lualine.enable = true;
-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 ];
};
}
-1
View File
@@ -21,7 +21,6 @@
./networking
./notif
./office
./rice
./shell
./terminal
./utilities
-2
View File
@@ -16,9 +16,7 @@ in
steam.enable = true;
prism.enable = true;
firefox.enable = true;
floorp.enable = true;
librewolf.enable = true;
stylix.enable = true;
audio.enable = true;
office.enable = true;
element.enable = true;
-2
View File
@@ -17,8 +17,6 @@ in
prism.enable = true;
firefox.enable = true;
librewolf.enable = true;
floorp.enable = true;
stylix.enable = true;
audio.enable = true;
office.enable = true;
webcord.enable = true;
-1
View File
@@ -14,7 +14,6 @@ in
grub.disable = true;
base = true;
power = "desktop";
stylix.enable = true;
openssh.enable = true;
};
};
+1 -1
View File
@@ -16,7 +16,7 @@ in
config = mkIf config.smayzy.kdenlive.enable {
environment.systemPackages = with pkgs; [
libsForQt5.kdenlive
kdePackages.kdenlive
];
};
}
-6
View File
@@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./stylix.nix
];
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.stylix.enable = mkOption {
type = types.bool;
default = false;
description = "stylix";
};
config = mkIf config.smayzy.stylix.enable {
stylix.enable = true;
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/dracula.yaml";
environment.systemPackages = with pkgs; [ base16-schemes ];
};
}