This commit is contained in:
2025-08-31 22:01:30 -05:00
parent eeb29a80f4
commit 97a62eaa24

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, inputs, modulesPath, ... }: { { pkgs, inputs, ... }: {
imports = with inputs; [ imports = with inputs; [
@@ -6,8 +6,6 @@
(import ./disko.nix { device = "/dev/mmcblk0"; }) (import ./disko.nix { device = "/dev/mmcblk0"; })
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
sops-nix.nixosModules.sops sops-nix.nixosModules.sops
home-manager.nixosModules.default home-manager.nixosModules.default
@@ -15,14 +13,10 @@
]; ];
config = { 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; programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh bashInteractive ]; environment.shells = with pkgs; [ zsh bashInteractive ];