fix: Smaller...
Some checks failed
/ build-host (map[host:beefcake]) (push) Failing after 10s
/ build-host (map[host:dragon]) (push) Failing after 9s
/ build-host (map[host:flipflop]) (push) Failing after 9s
/ build-host (map[host:foxtrot]) (push) Failing after 10s
/ build-host (map[host:rascal]) (push) Failing after 10s
/ build-host (map[host:router]) (push) Failing after 10s
/ build-devshell (push) Successful in 18s
/ flake-check (push) Failing after 20s

This commit is contained in:
Daniel Flanagan 2025-03-21 00:18:27 -05:00
commit 685bc050dd
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

@ -17,6 +17,7 @@ in
};
config = lib.mkIf cfg.enable {
systemPackages = with pkgs; [ ghostty-terminfo ];
programs.nix-index.enable = true;
programs.command-not-found.enable = false;
users = {

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;
};
}