Rename folders coherently

This commit is contained in:
Laurent Gueret
2026-01-27 15:57:56 +01:00
parent 03a8e36d4b
commit 3975dce418
25 changed files with 105 additions and 96 deletions
+5 -17
View File
@@ -3,15 +3,14 @@
...
}:
{
imports = [
# Hardware
./hardware-configuration.nix
./parts/kernel.nix
./partials/kernel.nix
# Configurations
./parts/users.nix
./partials/users.nix
# Modules
inputs.self.nixos
@@ -19,20 +18,6 @@
];
nixpkgs = {
overlays = [
inputs.self.overlays.additions
inputs.self.overlays.modifications
inputs.self.overlays.unstable-packages
];
};
nix = {
settings = {
experimental-features = "nix-command flakes";
};
};
networking.hostName = "nixos";
networking.firewall.enable = true;
@@ -58,6 +43,9 @@
within.gnome.shell.enable = true;
within.gnome.apps.enable = true;
# Virtualisation Apps
within.shell.docker.enable = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "25.11";
}