fix: Smaller...
All checks were successful
/ build-host (map[host:beefcake]) (push) Successful in 1m34s
/ build-host (map[host:dragon]) (push) Successful in 1m39s
/ build-host (map[host:flipflop]) (push) Successful in 1m28s
/ build-host (map[host:foxtrot]) (push) Successful in 1m34s
/ build-host (map[host:rascal]) (push) Successful in 44s
/ build-host (map[host:router]) (push) Successful in 1m22s
/ build-devshell (push) Successful in 17s
/ flake-check (push) Successful in 5m27s

This commit is contained in:
Daniel Flanagan 2025-03-21 00:18:27 -05:00
commit 472505a78d
3 changed files with 5 additions and 3 deletions

View file

@ -91,7 +91,6 @@
self.shortRev or self.dirtyShortRev or self.lastModified or "unknown"
);
environment = {
systemPackages = with pkgs; [ ghostty-terminfo ];
etc = {
"lytedev/rev".text = config.system.configurationRevision;
"lytedev/lastModified".text = toString (self.lastModified or "unknown");

View file

@ -40,6 +40,7 @@ in
MANPAGER = "bat --style=plain";
};
systemPackages = with pkgs; [
ghostty-terminfo
aria2
bat
bottom

View file

@ -60,7 +60,8 @@
'';
networking = {
wifi.enable = true;
useDHCP = true;
wifi.enable = false;
firewall = {
enable = true;
allowPing = true;
@ -70,7 +71,8 @@
services.tailscale.useRoutingFeatures = "server";
lyte.shell.enable = false;
home-manager.users.daniel = {
lyte.shell.enable = true;
lyte.shell.enable = false;
};
}