forked from UniverseBow/flake
init (cerulean template)
This commit is contained in:
commit
1b7b1e66f0
65 changed files with 5597 additions and 0 deletions
41
hosts/MACBOOKI9/default.nix
Executable file
41
hosts/MACBOOKI9/default.nix
Executable 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?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue