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";
};