Add Nix settings to home-manager also

This commit is contained in:
Jimbo 2025-01-11 14:07:19 -05:00
parent 98378d3078
commit 9f72452896
2 changed files with 8 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./dconf ./dconf
./fonts ./fonts
./gtk ./gtk
./nix
./xdg ./xdg
]; ];
} }

View file

@ -0,0 +1,7 @@
{ ... }:
{
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
}