chore: remove physical-computer.nix

This commit is contained in:
uku 2024-05-21 15:00:01 +02:00
parent 55799d6b18
commit effaa7e870
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
4 changed files with 19 additions and 28 deletions

View file

@ -1,4 +1,5 @@
{
lib,
pkgs,
config,
catppuccin,
@ -9,8 +10,20 @@
boot = {
extraModulePackages = with config.boot.kernelPackages; [v4l2loopback];
kernelModules = ["v4l2loopback"];
loader = {
systemd-boot.enable = lib.mkForce false;
efi.canTouchEfiVariables = true;
};
lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
};
environment.systemPackages = with pkgs; [sbctl];
fonts = {
packages = with pkgs; [
iosevka

View file

@ -1,19 +0,0 @@
{
lib,
pkgs,
...
}: {
boot = {
loader = {
systemd-boot.enable = lib.mkForce false;
efi.canTouchEfiVariables = true;
};
lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
};
environment.systemPackages = with pkgs; [sbctl];
}