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?
}

View file

@ -0,0 +1,33 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/c959876c-805c-4433-bb36-67eb13924c62";
fsType = "btrfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/8CC6-6102";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/091b5706-ba96-44b9-89b7-9aa7e85b8221"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}