Skip to content

Commit

Permalink
NixOS: bump to 24.05
Browse files Browse the repository at this point in the history
- remove hopenpgp-tools (as per README)
- add dirmgr
- add rng-tools
  • Loading branch information
motiejus committed Jul 7, 2024
1 parent d30f93a commit d7b2a03
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "A Nix Flake for an xfce-based system with YubiKey setup";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
drduhConfig.url = "github:drduh/config";
drduhConfig.flake = false;
};
Expand Down Expand Up @@ -129,7 +129,7 @@
enable = true;
virtualHosts."diceware.local" = {
listen = [
{
{
addr = dicewareAddress;
port = dicewarePort;
}
Expand All @@ -153,9 +153,12 @@
preferencesStatus = "user";
};
ssh.startAgent = false;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
gnupg = {
dirmngr.enable = true;
agent = {
enable = true;
enableSSHSupport = true;
};
};
};

Expand Down Expand Up @@ -196,12 +199,12 @@

# Testing
ent
haskellPackages.hopenpgp-tools

# Password generation tools
diceware
dicewareWebApp
pwgen
rng-tools

# Might be useful beyond the scope of the guide
cfssl
Expand Down

0 comments on commit d7b2a03

Please sign in to comment.