mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
25 lines
No EOL
450 B
Nix
25 lines
No EOL
450 B
Nix
{ inputs, pkgs, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
boot = {
|
|
initrd.systemd = {
|
|
enable = true;
|
|
network.wait-online.enable = false; # Handled by NetworkManager
|
|
};
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot= {
|
|
enable = true;
|
|
consoleMode = "1";
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
olm
|
|
];
|
|
} |