add modules dir

This commit is contained in:
smayzy 2025-11-05 16:47:13 +01:00
parent 211304985d
commit de76c52a91
2 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,7 @@
[ [
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
./modules/nix
]; ];
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];

5
modules/nix/default.nix Normal file
View File

@ -0,0 +1,5 @@
{ ... }:
{
imports = [
];
}