general update

This commit is contained in:
atagen 2025-09-27 16:38:48 +10:00
parent a0f1298174
commit c649eab38a
6 changed files with 75 additions and 62 deletions

View file

@ -1,7 +1,5 @@
{ lib, ... }:
{
# misc perl
system.disableInstallerTools = true;
programs.less.lessopen = null;
programs.command-not-found.enable = false;

View file

@ -1,4 +1,10 @@
{ pkgs, inputs, ... }:
{
pkgs,
inputs,
getFlakePkg,
getFlakePkg',
...
}:
{
imports = [
inputs.angrr.nixosModules.angrr
@ -15,7 +21,8 @@
enable = true;
enableNixGcIntegration = true;
period = "2weeks";
package = inputs.angrr.packages.${pkgs.system}.default;
package = getFlakePkg inputs.angrr;
};
programs.direnv.angrr.package = getFlakePkg' inputs.angrr "angrr-direnv";
}