From a00aed15d19479b32dce0e5a86ec1ad554b14aa6 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Tue, 25 Jun 2024 12:59:51 +0200 Subject: [PATCH] add readme and gparted --- iso/README.md | 18 ++++++++++++++++++ iso/configuration.nix | 4 +--- 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 iso/README.md 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 ];