fix: Smaller...
All checks were successful
/ build-host (map[host:beefcake]) (push) Successful in 54s
/ build-host (map[host:dragon]) (push) Successful in 1m18s
/ build-host (map[host:flipflop]) (push) Successful in 1m6s
/ build-host (map[host:foxtrot]) (push) Successful in 1m16s
/ build-host (map[host:rascal]) (push) Successful in 41s
/ build-host (map[host:router]) (push) Successful in 44s
/ build-devshell (push) Successful in 18s
/ flake-check (push) Successful in 5m12s
All checks were successful
/ build-host (map[host:beefcake]) (push) Successful in 54s
/ build-host (map[host:dragon]) (push) Successful in 1m18s
/ build-host (map[host:flipflop]) (push) Successful in 1m6s
/ build-host (map[host:foxtrot]) (push) Successful in 1m16s
/ build-host (map[host:rascal]) (push) Successful in 41s
/ build-host (map[host:router]) (push) Successful in 44s
/ build-devshell (push) Successful in 18s
/ flake-check (push) Successful in 5m12s
This commit is contained in:
commit
b68bbb4784
3 changed files with 8 additions and 4 deletions
|
@ -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");
|
||||
|
@ -192,7 +191,6 @@
|
|||
options = lib.mkDefault "ctrl:nocaps";
|
||||
};
|
||||
smartd.enable = lib.mkDefault true;
|
||||
fwupd.enable = lib.mkDefault true;
|
||||
};
|
||||
|
||||
console = {
|
||||
|
|
|
@ -19,6 +19,9 @@ in
|
|||
config = lib.mkIf cfg.enable {
|
||||
programs.nix-index.enable = true;
|
||||
programs.command-not-found.enable = false;
|
||||
services = {
|
||||
fwupd.enable = lib.mkDefault true;
|
||||
};
|
||||
users = {
|
||||
defaultUserShell = pkgs.fish;
|
||||
};
|
||||
|
@ -40,6 +43,7 @@ in
|
|||
MANPAGER = "bat --style=plain";
|
||||
};
|
||||
systemPackages = with pkgs; [
|
||||
ghostty-terminfo
|
||||
aria2
|
||||
bat
|
||||
bottom
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue