import individuals to default.nix

This commit is contained in:
smayzy
2025-07-07 23:58:35 +02:00
parent 95968d0dae
commit 53cad02771
8 changed files with 41 additions and 35 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, config, pkgs, ... }:
{
imports = [
./audio
./base-cli
./hardware
./virt
];
# Timzone and locales (same for all machines so I put it here)
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "Europe/Paris";
}