From 97a62eaa2499334c9e6e6c87acb1d202b78cc580 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 31 Aug 2025 22:01:30 -0500 Subject: [PATCH] live --- system-config/configuration/live/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/system-config/configuration/live/default.nix b/system-config/configuration/live/default.nix index d85ad3a..b132872 100644 --- a/system-config/configuration/live/default.nix +++ b/system-config/configuration/live/default.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, inputs, modulesPath, ... }: { +{ pkgs, inputs, ... }: { imports = with inputs; [ @@ -6,8 +6,6 @@ (import ./disko.nix { device = "/dev/mmcblk0"; }) - (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") - sops-nix.nixosModules.sops home-manager.nixosModules.default @@ -15,14 +13,10 @@ ]; config = { - - fonts.fontconfig.enable = lib.mkForce true; - environment.systemPackages = with pkgs; [ nerd-fonts.fira-code ]; - - users.users.nixos.enable = lib.mkForce false; - - services.getty.autologinUser = lib.mkForce null; + hardware.enableAllFirmware = true; + hardware.enableAllHardware = true; + programs.zsh.enable = true; environment.shells = with pkgs; [ zsh bashInteractive ];