fix!: modified home.stateVersion and system.stateVersion to use 25.05 instead of 25.11

This commit is contained in:
Ceferino Patino 2025-10-08 12:14:06 -05:00
commit 550f3c40c0
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
lib,
namespace,
...
}: let
inherit (lib.${namespace}) enabled;
in {
${namespace} = {
bundles = {
common = enabled;
shell = enabled;
};
};
home.stateVersion = "25.05";
}

View file

@ -0,0 +1,31 @@
{
inputs,
lib,
namespace,
...
}: let
inherit (lib.${namespace}) enabled;
in {
imports = [
./hardware-configuration.nix
inputs.disko.nixosModules.default
(import ../../disko.nix {main = "/dev/sda";})
];
${namespace} = {
bundles = {
common = enabled;
};
services = {
networking.httpd = enabled;
};
};
networking = {
hostName = "shiori";
hostId = "asdfas";
};
system.stateVersion = "25.05";
}