machine/workman: init

This commit is contained in:
Felix Buehler 2025-05-04 20:20:28 +02:00
parent c48b59fe72
commit 8c029fad44
14 changed files with 336 additions and 1 deletions

24
machines/workman/boot.nix Normal file
View file

@ -0,0 +1,24 @@
{
config,
inputs,
...
}:
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
efi.canTouchEfiVariables = true;
};
plymouth = {
enable = true;
theme = "framework";
themePackages = [ inputs.framework-plymouth.packages.${config.nixpkgs.system}.default ];
};
};
}