Generalize some more files, make hidden use Intel microcode and not AMD

This commit is contained in:
Bun 2025-05-18 04:35:54 -04:00
parent 2e483af205
commit 3f257e006c
8 changed files with 31 additions and 16 deletions

View file

@ -0,0 +1,8 @@
{ config, lib, ... }:
{
config = lib.mkIf config.targets.genericLinux.enable {
home = {
sessionVariables.PATH = "$HOME/.nix-profile/bin:$PATH";
};
};
}