mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-26 00:18:28 +02:00
hacked together some basic netboot stuff
This commit is contained in:
parent
fbbb68ee06
commit
8b37b0adfc
5 changed files with 48 additions and 6 deletions
19
hosts/netboot/default.nix
Normal file
19
hosts/netboot/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, modulesPath, ... }:
|
||||
{
|
||||
imports = [
|
||||
"${modulesPath}/installer/netboot/netboot-minimal.nix"
|
||||
|
||||
];
|
||||
|
||||
console = {
|
||||
font = "Lat2-Terminus16";
|
||||
keyMap = "dvorak";
|
||||
};
|
||||
programs.git.enable = true;
|
||||
|
||||
# in case we need to rescue a zfs machine
|
||||
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||
system.stateVersion = "23.05";
|
||||
|
||||
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.greetd}/bin/agreety --cmd Hyprland";
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --cmd Hyprland";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue