This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{ lib, config, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.chromium.enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "chromium";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.chromium.enable {
|
||||
programs.chromium.enable = true;
|
||||
};
|
||||
}
|
||||
@@ -4,5 +4,6 @@
|
||||
./firefox.nix
|
||||
./floorp.nix
|
||||
./librewolf.nix
|
||||
./chromium.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -46,6 +46,7 @@ in
|
||||
fritzing.enable = true;
|
||||
aegisub.enable = true;
|
||||
tor.enable = true;
|
||||
chromium.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -44,6 +44,7 @@ in
|
||||
fritzing.enable = true;
|
||||
aegisub.enable = true;
|
||||
alacritty.enable = true;
|
||||
chromium.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user