1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

remove nix coniguration from configuration.nix to separate module

This commit is contained in:
andrey_varnavskiy
2024-11-29 16:19:46 +05:00
parent 6dd9ef5458
commit 5b48fce03b
3 changed files with 4 additions and 2 deletions

View File

@@ -8,8 +8,6 @@
./modules
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
networking.hostName = hostname;
system.stateVersion = stateVersion;

View File

@@ -9,6 +9,7 @@
./mime.nix
./net.nix
./nh.nix
./nix.nix
./stylix.nix
./timezone.nix
./user.nix

3
nixos/modules/nix.nix Normal file
View File

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