feat: more modules
This commit is contained in:
parent
2c70c86c8e
commit
98b71eeddc
5 changed files with 83 additions and 22 deletions
20
computers/shared/qutebrowser.nix
Normal file
20
computers/shared/qutebrowser.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
cfg = config.alqueva.qutebrowser;
|
||||
in {
|
||||
options.alqueva.qutebrowser = {
|
||||
enable = lib.mkEnableOption "qutebrowser";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = [
|
||||
(pkgs.qutebrowser-qt5.override {
|
||||
enableVulkan = true;
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue