aboutsummaryrefslogtreecommitdiff
path: root/nixos/profiles/common/sanix.nix
AgeCommit message (Collapse)Author
2026-05-16refactor: set nixPath and NIXPKGS_CONFIG only in workstationMartin Fischer
Referencing pkgs.path in /etc/set-environment caused the system derivations to needlessly depend on ~460M of nixpkgs (which slowed down server deployments). The only downside is that `nix-shell -p` doesn't work anymore on the servers. And the other paths are local to my hamac laptop and don't exist on the servers.
2026-05-16refactor: set nix.channel.enable = falseMartin Fischer
The mentioned issue has been long fixed in https://github.com/NixOS/nixpkgs/commit/1e6acabaebb2d3eb13cde9d8742aadb9480abcd7.
2025-06-16tweak(workstation): add config for XPPen tabletMartin Fischer
I'm removing nixpkgs-overlays from nix.nixPath because overlays seem to work fine without it (with just nixpkgs.overlays). And keeping it would have required me to adapt the path because `nix-shell -p` was failing with "The overlays argument to nixpkgs must be a list" due to the new pkgs param.
2024-12-27refactor: introduce profilesMartin Fischer