fix(home): Add enable
This commit is contained in:
parent
0b22f3b9ef
commit
c619fcf50a
8 changed files with 8 additions and 8 deletions
|
@ -18,7 +18,7 @@ let
|
|||
themeFile = themeFiles."${colors.base}";
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.amfora = mkEnableOption "amfora";
|
||||
options.marleyos.programs.amfora.enable = mkEnableOption "amfora";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -12,7 +12,7 @@ let
|
|||
inherit (config.marleyos.theme) colors;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.bat = mkEnableOption "bat";
|
||||
options.marleyos.programs.bat.enable = mkEnableOption "bat";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.bat = {
|
||||
|
|
|
@ -11,7 +11,7 @@ let
|
|||
inherit (config.marleyos.theme) colors;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.btop = mkEnableOption "btop";
|
||||
options.marleyos.programs.btop.enable = mkEnableOption "btop";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.btop = {
|
||||
|
|
|
@ -11,7 +11,7 @@ let
|
|||
inherit (config.marleyos.theme) colors;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.cava = mkEnableOption "cava";
|
||||
options.marleyos.programs.cava.enable = mkEnableOption "cava";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.cava = {
|
||||
|
|
|
@ -13,7 +13,7 @@ let
|
|||
toYAML = (pkgs.formats.yaml { }).generate;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.cheat = mkEnableOption "cheat";
|
||||
options.marleyos.programs.cheat.enable = mkEnableOption "cheat";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -10,7 +10,7 @@ let
|
|||
cfg = config.marleyos.programs.curl;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.curl = mkEnableOption "curl";
|
||||
options.marleyos.programs.curl.enable = mkEnableOption "curl";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -9,7 +9,7 @@ let
|
|||
cfg = config.marleyos.programs.eza;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.eza = mkEnableOption "eza";
|
||||
options.marleyos.programs.eza.enable = mkEnableOption "eza";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.eza = {
|
||||
|
|
|
@ -10,7 +10,7 @@ let
|
|||
cfg = config.marleyos.programs.figlet;
|
||||
in
|
||||
{
|
||||
options.marleyos.programs.figlet = mkEnableOption "figlet";
|
||||
options.marleyos.programs.figlet.enable = mkEnableOption "figlet";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
|
Loading…
Reference in a new issue