mirror of
https://github.com/genebean/dots.git
synced 2026-03-28 09:57:43 -04:00
Some playground bits for trying restructuring
This commit is contained in:
parent
16f492663d
commit
537dbf0b82
6 changed files with 293 additions and 0 deletions
25
2024-12-rework/configuration.nix
Normal file
25
2024-12-rework/configuration.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue