Compare commits

..

2 Commits

Author SHA1 Message Date
4db8c17f70 chore(nix): update builder public host key 2026-06-11 16:07:53 -04:00
36f2abc1a9 chore(thinkpad): reorganize packages and drop ACPI GPE mask
Move mosh/unzip into common home packages, add orca-slicer to the thinkpad home, and remove the now-redundant system package list and kernel param.
2026-06-11 16:07:53 -04:00
4 changed files with 9 additions and 20 deletions

View File

@@ -68,6 +68,10 @@ in
}; };
}; };
home.packages = with pkgs; [
orca-slicer
];
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
name = "catppuccin-macchiato-mauve-cursors"; name = "catppuccin-macchiato-mauve-cursors";

View File

@@ -2,11 +2,13 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
sqlite-interactive
jnv jnv
jq jq
mosh
ncdu ncdu
ripgrep
reichard.codexis reichard.codexis
ripgrep
sqlite-interactive
unzip
]; ];
} }

View File

@@ -38,7 +38,7 @@ in
sshUser = "evanreichard"; sshUser = "evanreichard";
protocol = "ssh"; protocol = "ssh";
sshKey = config.sops.secrets.builder_ssh_key.path; sshKey = config.sops.secrets.builder_ssh_key.path;
publicHostKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGlpC0rorATKzK8mLMKgCYqM5N2N/GgS2t4M13cwnAOS"; publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUdscEMwcm9yQVRLeks4bUxNS2dDWXFNNU4yTi9HZ1MydDRNMTNjd25BT1M=";
supportedFeatures = [ supportedFeatures = [
"benchmark" "benchmark"
"big-parallel" "big-parallel"

View File

@@ -10,13 +10,6 @@ in
system.stateVersion = "26.05"; system.stateVersion = "26.05";
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
boot = {
kernelParams = [
# Mask GPE03 (EC wakeup events) to allow hibernation without spurious CPU wakeups
"acpi_mask_gpe=0x03"
];
};
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
hardware = { hardware = {
@@ -85,14 +78,4 @@ in
sops = enabled; sops = enabled;
}; };
}; };
# Additional System Packages
environment.systemPackages = with pkgs; [
dool
jq
mosh
rclone
sqlite-interactive
unzip
];
} }