cleanup files and add AIO image

This commit is contained in:
Jeeves 2024-11-29 06:19:46 -07:00
parent c436983153
commit 022ceeb8aa
9 changed files with 90 additions and 114 deletions

18
installer.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs, modulesPath, ... }: {
imports = [ (modulesPath + "/profiles/minimal.nix") ];
ps4.enable = true;
users.users.nixos = {
isNormalUser = true;
password = "nixos";
extraGroups = [ "wheel" ];
};
services.getty.autologinUser = "nixos";
users.defaultUserShell = pkgs.fish;
programs.fish.enable = true;
system.stateVersion = "25.05";
}