hello world!

This commit is contained in:
kenji
2025-12-23 18:43:43 +00:00
parent 73b5b2c9f6
commit b55c662a1b
9 changed files with 49 additions and 32 deletions
+4 -4
View File
@@ -10,10 +10,10 @@
efiSysMountPoint = "/boot";
};
grub = {
enable = false;
device = "nodev";
};
# grub = {
# enable = false;
# device = "nodev";
# };
};
initrd = {
+7
View File
@@ -1,4 +1,11 @@
{pkgs, ...}: {
system.stateVersion = "25.05";
nixpkgs.config.allowUnfree = true;
nix = {
distributedBuilds = true;
settings = {
builders-use-substitutes = true;
experimental-features = ["nix-command" "flakes"];
};
};
}