add tablet modes for firefox and gnome
This commit is contained in:
@@ -4,7 +4,7 @@ with lib;
|
||||
{
|
||||
options.helix = {
|
||||
fullInstall = mkOption {
|
||||
type = lib.types.nullOr lib.types.bool;
|
||||
type = types.bool;
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
@@ -17,43 +17,44 @@ with lib;
|
||||
settings = {
|
||||
theme = "dracula";
|
||||
};
|
||||
extraPackages = with pkgs;[ gcc ];
|
||||
extraPackages = with pkgs;[
|
||||
gcc
|
||||
] ++ (optionals config.helix.fullInstall [
|
||||
#nix
|
||||
nixd
|
||||
nixpkgs-fmt
|
||||
|
||||
#dotnet
|
||||
omnisharp-roslyn
|
||||
netcoredbg
|
||||
|
||||
# rust
|
||||
rustfmt
|
||||
clippy
|
||||
rust-analyzer
|
||||
lldb
|
||||
|
||||
#python
|
||||
ruff
|
||||
|
||||
# shell
|
||||
shfmt
|
||||
bash-language-server
|
||||
fish-lsp
|
||||
|
||||
# misc
|
||||
hyprls
|
||||
marksman
|
||||
|
||||
# web
|
||||
superhtml
|
||||
biome
|
||||
] ++ (with nodePackages;[
|
||||
vscode-langservers-extracted
|
||||
typescript-language-server
|
||||
]));
|
||||
}
|
||||
(mkIf config.helix.fullInstall {
|
||||
extraPackages = with pkgs;[
|
||||
#nix
|
||||
nixd
|
||||
nixpkgs-fmt
|
||||
|
||||
#dotnet
|
||||
omnisharp-roslyn
|
||||
netcoredbg
|
||||
|
||||
# rust
|
||||
rustfmt
|
||||
clippy
|
||||
rust-analyzer
|
||||
lldb
|
||||
|
||||
#python
|
||||
ruff
|
||||
|
||||
# shell
|
||||
shfmt
|
||||
bash-language-server
|
||||
fish-lsp
|
||||
|
||||
# misc
|
||||
hyprls
|
||||
marksman
|
||||
|
||||
# web
|
||||
superhtml
|
||||
biome
|
||||
] ++ (with nodePackages;[
|
||||
vscode-langservers-extracted
|
||||
typescript-language-server
|
||||
]);
|
||||
languages = {
|
||||
language = [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user