back to docker; add npmrc for not executing scripts; update hx script;

This commit is contained in:
2025-09-20 21:12:50 +01:00
parent 93cee2d49a
commit ac5216413e
5 changed files with 57 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }:
{ pkgs, inputs, lib, ... }:
{
imports = [
@@ -24,9 +24,16 @@
strawberry
];
# set breeze as default cursor
# set breeze as default cursor
# For cursor in steam?
home.file.".icons/default".source = "${pkgs.kdePackages.breeze}/share/icons/breeze_cursors";
home.file.".npmrc".text = lib.generators.toINIWithGlobalSection { } {
globalSection = {
ignore-scripts = "true";
};
};
home.sessionVariables = {
NIXOS_OZONE_WL = "1";
};

View File

@@ -21,30 +21,41 @@ with lib;
}
(mkIf config.helix.fullInstall {
extraPackages = with pkgs;[
marksman
shfmt
bash-language-server
superhtml
#nix
nixd
nixpkgs-fmt
biome
#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 = [
{
name = "nix";
language-servers = [ "nixd" "nil" ];
}
{
name = "html";
language-servers = [ "superhtml" "vscode-html-language-server" ];
}
{
name = "bash";
formatter = { command = "shfmt"; };