diff --git a/iso/README.md b/iso/README.md new file mode 100644 index 0000000..502cb18 --- /dev/null +++ b/iso/README.md @@ -0,0 +1,18 @@ +# ISO +This "host" is used for generating a bootable (flakes-enabled) NixOS image with sane default programs. + +The image contains the following: + +- Plasma 6 as graphical environment +- Calamares installer +- Git +- Vim +- Parted +- GParted + +The graphical environment will autologin to the user `nixos`, alternatively there is a default user `leonv` with password `leonv`. + +## Building the Image +```sh +nix build .#nixosConfigurations.iso.config.system.build.isoImage +``` \ No newline at end of file diff --git a/iso/configuration.nix b/iso/configuration.nix index f462886..b211705 100644 --- a/iso/configuration.nix +++ b/iso/configuration.nix @@ -57,12 +57,10 @@ # List packages installed in system profile. environment.systemPackages = with pkgs; [ - # for connecting to nas - nfs-utils - # some standards for convenience vim parted + gparted git ];