add chromium and android toolkit
All checks were successful
nix flake show / show-flake (push) Successful in 32s
All checks were successful
nix flake show / show-flake (push) Successful in 32s
This commit is contained in:
parent
12b0f8e27a
commit
27bc4cf9a4
@ -19,9 +19,12 @@
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"adbusers"
|
||||
];
|
||||
};
|
||||
|
||||
programs.adb.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
home-manager
|
||||
mpv
|
||||
|
||||
15
modules/nix/browser/chromium.nix
Normal file
15
modules/nix/browser/chromium.nix
Normal file
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user