Compare commits

..

4 Commits

Author SHA1 Message Date
98a77d86ee make sure the clean is done every hour 2025-07-09 00:27:07 +02:00
423050d79f this neither 2025-07-09 00:19:18 +02:00
86d3ebf9d2 don't know where I found this shit 2025-07-09 00:18:02 +02:00
9ab7166714 mv librewolf and floorp to module 2025-07-09 00:14:56 +02:00
7 changed files with 37 additions and 2 deletions

View File

@ -43,9 +43,7 @@
webcord
obsidian
libsForQt5.kdenlive
floorp
komikku
librewolf
blender
inkscape
];

View File

@ -14,6 +14,7 @@ in
enable = true;
clean.enable = true;
clean.extraArgs = "--keep 10";
programs.nh.clean.dates = "hourly";
flake = "/home/smayzy/nix-config";
};
};

View File

@ -2,5 +2,7 @@
{
imports = [
./firefox.nix
./floorp.nix
./librewolf.nix
];
}

View File

@ -0,0 +1,15 @@
{ 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 ];
};
}

View File

@ -0,0 +1,15 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.librewolf.enable = mkOption {
type = types.bool;
default = false;
description = "librewolf";
};
config = mkIf config.smayzy.librewolf.enable {
environment.systemPackages = with pkgs; [ librewolf ];
};
}

View File

@ -15,6 +15,8 @@ in
steam.enable = true;
prism.enable = true;
firefox.enable = true;
floorp.enable = true;
librewolf.enable = true;
stylix.enable = true;
audio.enable = true;
};

View File

@ -15,6 +15,8 @@ in
grub-on-lap.enable = true;
prism.enable = true;
firefox.enable = true;
librewolf.enable = true;
floorp.enable = true;
stylix.enable = true;
audio.enable = true;
};