mv librewolf and floorp to module
This commit is contained in:
parent
198bd37782
commit
9ab7166714
@ -43,9 +43,7 @@
|
|||||||
webcord
|
webcord
|
||||||
obsidian
|
obsidian
|
||||||
libsForQt5.kdenlive
|
libsForQt5.kdenlive
|
||||||
floorp
|
|
||||||
komikku
|
komikku
|
||||||
librewolf
|
|
||||||
blender
|
blender
|
||||||
inkscape
|
inkscape
|
||||||
];
|
];
|
||||||
|
|||||||
@ -2,5 +2,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
./floorp.nix
|
||||||
|
./librewolf.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
15
modules/nix/browser/floorp.nix
Normal file
15
modules/nix/browser/floorp.nix
Normal 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 {
|
||||||
|
programs.floorp.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
15
modules/nix/browser/librewolf.nix
Normal file
15
modules/nix/browser/librewolf.nix
Normal 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 {
|
||||||
|
programs.librewolf.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -15,6 +15,8 @@ in
|
|||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
prism.enable = true;
|
prism.enable = true;
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
|
floorp.enable = true;
|
||||||
|
librewolf.enable = true;
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
@ -15,6 +15,8 @@ in
|
|||||||
grub-on-lap.enable = true;
|
grub-on-lap.enable = true;
|
||||||
prism.enable = true;
|
prism.enable = true;
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
|
librewolf.enable = true;
|
||||||
|
floorp.enable = true;
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user