Switching --no-build-nix to --fast because it fixes remote deploys to machines with different architectures.

I thought these flags were synonymous?
This commit is contained in:
Tom Alexander
2025-05-04 12:31:33 -04:00
parent 1044aa16b0
commit a36ebbf94c
9 changed files with 35 additions and 20 deletions

View File

@@ -79,6 +79,9 @@
# boot.kernelPackages = pkgs.linuxPackages_6_11;
hardware.enableRedistributableFirmware = true;
# Use nixos-rebuild-ng
# system.rebuild.enableNg = true;
services.getty = {
autologinUser = "talexander"; # I use full disk encryption so the user password is irrelevant.
autologinOnce = true;
@@ -105,12 +108,6 @@
home-manager.users.talexander =
{ pkgs, ... }:
{
home.packages = [
pkgs.atool
pkgs.httpie
];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "24.11";