41 lines
795 B
Nix
Executable file
41 lines
795 B
Nix
Executable file
{
|
|
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?
|
|
}
|