fix!: modified home.stateVersion and system.stateVersion to use 25.05 instead of 25.11
This commit is contained in:
parent
b81c75c4e4
commit
550f3c40c0
2 changed files with 47 additions and 0 deletions
16
homes/x86_64-linux/c4patino@tobira/default.nix
Normal file
16
homes/x86_64-linux/c4patino@tobira/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.${namespace}) enabled;
|
||||
in {
|
||||
${namespace} = {
|
||||
bundles = {
|
||||
common = enabled;
|
||||
shell = enabled;
|
||||
};
|
||||
};
|
||||
|
||||
home.stateVersion = "25.05";
|
||||
}
|
||||
31
systems/x86_64-linux/tobira/default.nix
Executable file
31
systems/x86_64-linux/tobira/default.nix
Executable 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue