1
0
Fork 0
forked from UniverseBow/flake

init (cerulean template)

This commit is contained in:
do butterflies cry? 2026-03-25 22:55:15 -07:00
commit 1b7b1e66f0
Signed by: cry
GPG key ID: F68745A836CA0412
65 changed files with 5597 additions and 0 deletions

41
hosts/MACBOOKI9/default.nix Executable file
View file

@ -0,0 +1,41 @@
{
pkgs,
upkgs,
lib,
...
}: {
imports = [
./hardware.nix
];
networking.hostName = "MACBOOKI9";
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
efiSupport = true;
device = "nodev";
# detect other bootable systems at build-time
useOSProber = false;
};
};
# ----- SERVICES -----
services = {
# Touchpad support
libinput.enable = true;
};
# ---- SYSTEM PACKAGES -----
environment.systemPackages = with pkgs; [];
# XXX: WARNING: DO NOT MODIFY
# XXX: WARNING: DO NOT MODIFY
# XXX: WARNING: IM DEAD SERIOUS DO NOT CHANGE THIS VALUE
# XXX: WARNING: IM DEAD SERIOUS DO NOT CHANGE THIS VALUE
system.stateVersion = "25.11"; # Did you read the comment?
}