Some playground bits for trying restructuring

This commit is contained in:
Gene Liverman 2024-12-04 06:58:43 -05:00
parent 16f492663d
commit 537dbf0b82
6 changed files with 293 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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
];
}