Christoph Cullmann's NixOS configuration
Find a file
2025-01-09 17:27:09 +01:00
beta less not used features 2024-12-28 18:06:11 +01:00
miku less not used features 2024-12-28 18:06:11 +01:00
mini less not used features 2024-12-28 18:06:11 +01:00
neko less not used features 2024-12-28 18:06:11 +01:00
packages prepare for zfs 2024-10-03 00:50:52 +02:00
projects/kde update 2024-12-31 17:00:54 +01:00
share bye moon 2025-01-09 17:27:09 +01:00
.gitignore strip trailing newline 2024-10-05 17:06:52 +02:00
README.md test github sync 2025-01-01 19:27:23 +01:00

Christoph Cullmann's NixOS configuration

build unstable installer with latest kernel

{
  description = "installation media";
  inputs.nixos.url = "nixpkgs/nixos-unstable";
  outputs = { self, nixos }: {
    nixosConfigurations = {
      exampleIso = nixos.lib.nixosSystem {
        system = "x86_64-linux";
        modules = [
          "${nixos}/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel-no-zfs.nix"
          ({ config, pkgs, ... }: {
            networking.wireless.enable = false;
            networking.networkmanager.enable = true;
          })
        ];
      };
    };
  };
}
git init
git add flake.nix
nix --extra-experimental-features flakes --extra-experimental-features nix-command build .#nixosConfigurations.exampleIso.config.system.build.isoImage

doas dd if=result/iso/nixos-*-x86_64-linux.iso of=/dev/sda bs=4M conv=fsync

reset home manager

rm /data/home/cullmann/.local/state/nix/profiles/home-manager* /date/home/cullmann/.local/state/home-manager/gcroots/current-home
rm /data/home/sandbox-games/.local/state/nix/profiles/home-manager* /date/home/sandbox-games/.local/state/home-manager/gcroots/current-home
rm /data/home/sandbox-kde/.local/state/nix/profiles/home-manager* /date/home/sandbox-kde/.local/state/home-manager/gcroots/current-home