Add a new theme and tamper with some files

This commit is contained in:
Jimbo 2024-10-18 16:26:44 -04:00
parent 03fba91ab6
commit 2828d7a210
16 changed files with 124 additions and 104 deletions

View file

@ -6,9 +6,10 @@
hashedPassword = config.secrets.jimboAccPass;
isNormalUser = true;
openssh.authorizedKeys.keys = [
(builtins.readFile ../../../../../hosts/firefly/id_ed25519.pub)
(builtins.readFile ../../../../../hosts/cyberspark/id_ed25519.pub)
(builtins.readFile ../../../../../hosts/shuttleworth/id_ed25519.pub)
(builtins.readFile ../../../../../hosts/firefly/id_ed25519.pub)
(builtins.readFile ../../../../../hosts/cyberspark/id_ed25519.pub)
(builtins.readFile ../../../../../hosts/shuttleworth/id_ed25519.pub)
(builtins.readFile ../../../../../hosts/lacros/id_ed25519.pub)
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJahAoF74BY6GCTsFkt1ADKaraFgJJozW1Y1aBTLK0j9 pixel9"
];

View file

@ -33,6 +33,5 @@
hardware.enableRedistributableFirmware = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "24.05";
}

View file

@ -1,4 +1,4 @@
{ lanzaboote, ... }:
{ lanzaboote, pkgs, ... }:
{
imports = [
lanzaboote.nixosModules.lanzaboote
@ -8,4 +8,8 @@
enable = true;
pkiBundle = "/etc/secureboot";
};
environment.systemPackages = with pkgs; [
sbctl
];
}

View file

@ -3,6 +3,5 @@
boot.loader.systemd-boot = {
enable = true;
editor = false;
netbootxyz.enable = true;
};
}