Large change on folder structure AND used of import-tree.

This commit is contained in:
Laurent Gueret
2026-01-28 13:18:17 +01:00
parent 3975dce418
commit ae5ac475c5
53 changed files with 253 additions and 278 deletions
+9
View File
@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = [
"coretemp"
"nct6775"
];
}
+8
View File
@@ -0,0 +1,8 @@
{ ... }:
{
networking.hostName = "nixos";
networking.firewall.enable = true;
time.timeZone = "Europe/Brussels";
}
+10
View File
@@ -0,0 +1,10 @@
{ ... }:
{
users.users = {
alistreaza = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
};
}