aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/flake.nix (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-07-20Rename displayManager.autoLogin settingJustus Perlwitz1-4/+6
This is based on a warning encountered when running the build with nix build .#nixosConfigurations.yubikeyLive.x86_64-linux.config.system.build.isoImage The message encountered was: > trace: warning: The option `services.xserver.displayManager.autoLogin' defined in `/nix/store/sj9yrq21wbbfr5715hys3laa2qd6x471-source/flake.nix' has been renamed to `services.displayManager.autoLogin'.
2024-07-20Update system.stateVersion to 24.05Justus Perlwitz1-1/+1
2024-07-07NixOS: bump to 24.05Motiejus Jakštys1-6/+9
- remove hopenpgp-tools (as per README) - add dirmgr - add rng-tools
2024-05-03Include the diceware web appManuel Thalmann1-0/+61
2024-05-03Fix non-existent guide iconManuel Thalmann1-1/+1
2024-05-03Disable screen saverManuel Thalmann1-1/+4
2024-05-03Add `okular` as a markdown viewerManuel Thalmann1-0/+3
2024-03-16Simplify instructions, reduce manual labordrduh1-2/+2
2024-02-04NixOS Live Image: convert to a flakeMotiejus Jakštys1-0/+210
Now `nixpkgs` will be pointing to a specific release, which has a much smaller chance to unexpectedly break. Currently 23.11. The next one will be 24.05, 24.11, etc. NixOS *releases* receive security updates, but packages are upgraded conservatively, thus don't generally break. As a result, we should need to worry about NixOS upgrades every 6-12 months. The upgrade means "bump the version number and try to build it". If it breaks, it will generally break only then. Less reactive, more proactive surprises. `flake.nix` was written by @thomaseizinger in https://github.com/drduh/YubiKey-Guide/issues/406. Changes from the original: - change Gnome to xfce. Now it loads with 384MB of RAM and works well with the simplest graphics (hello qemu). - less nasty workaround for hopenpgp-tools. Fixed upstream (https://github.com/NixOS/nixpkgs/pull/279117). - do not default `copytoram`, user can select this option in the bootloader. Here is how to test it: ``` $ nix run .#nixosConfigurations.yubikeyLive.x86_64-linux.config.system.build.vm ``` *Note for the maintainer*: it would be great if you could occasionally run `nix flake update --commit-lock-file`, *especially* after updating github.com/drduh/config.git. Fixes #406 Co-authored-by: Thomas Eizinger <thomas@eizinger.io>