[Nix] Move nix conf into nix subfolder

This commit is contained in:
Antoine Viallon 2023-03-24 21:02:05 +01:00
parent 699f730c91
commit 4735347fd2
Signed by: aviallon
GPG key ID: 186FC35EDEB25716
3 changed files with 7 additions and 1 deletions

View file

@ -2,7 +2,7 @@
{
imports = [
./general.nix
./nix.nix
./nix
./boot.nix
./desktop
./home-manager.nix

6
nix/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, ... }:
{
imports = [
./nix.nix
];
}