hosts: drop iso

As alluded to in the previous commit, I don't actually have a need to
create a custom iso due to the power of Nix and NixOS.
This commit is contained in:
Donovan Glover 2025-01-27 13:09:32 -05:00
parent 4a04454547
commit d286dd6474
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 54 deletions

View File

@ -78,12 +78,6 @@
specialArgs.nix-config = self;
modules = listFilesRecursive ./hosts/laptop;
};
iso = nixosSystem {
system = "x86_64-linux";
specialArgs.nix-config = self;
modules = listFilesRecursive ./hosts/iso;
};
};
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);

View File

@ -1,48 +0,0 @@
{
pkgs,
lib,
modulesPath,
nix-config,
...
}:
let
inherit (builtins) attrValues;
username = "nixos";
in
{
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
nix-config.inputs.home-manager.nixosModules.home-manager
] ++ (with nix-config.nixosModules; [
stylix
fonts
desktop
librewolf
shell
]);
nixpkgs.overlays = attrValues nix-config.overlays;
environment.systemPackages = attrValues nix-config.packages.${pkgs.system};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules =
attrValues nix-config.homeModules
++ lib.singleton {
home.stateVersion = "24.11";
};
users.${username}.home = {
inherit username;
homeDirectory = "/home/${username}";
};
};
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
}