NixOS: bump to 24.05
- remove hopenpgp-tools (as per README) - add dirmgr - add rng-toolspull/450/head
parent
d30f93ac32
commit
d7b2a034aa
|
@ -18,16 +18,16 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1706826059,
|
"lastModified": 1720110830,
|
||||||
"narHash": "sha256-N69Oab+cbt3flLvYv8fYnEHlBsWwdKciNZHUbynVEOA=",
|
"narHash": "sha256-E5dN9GDV4LwMEduhBLSkyEz51zM17XkWZ3/9luvNOPs=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "25e3d4c0d3591c99929b1ec07883177f6ea70c9d",
|
"rev": "c0d0be00d4ecc4b51d2d6948e37466194c1e6c51",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"ref": "nixos-23.11",
|
"ref": "nixos-24.05",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
description = "A Nix Flake for an xfce-based system with YubiKey setup";
|
description = "A Nix Flake for an xfce-based system with YubiKey setup";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||||
drduhConfig.url = "github:drduh/config";
|
drduhConfig.url = "github:drduh/config";
|
||||||
drduhConfig.flake = false;
|
drduhConfig.flake = false;
|
||||||
};
|
};
|
||||||
|
@ -153,11 +153,14 @@
|
||||||
preferencesStatus = "user";
|
preferencesStatus = "user";
|
||||||
};
|
};
|
||||||
ssh.startAgent = false;
|
ssh.startAgent = false;
|
||||||
gnupg.agent = {
|
gnupg = {
|
||||||
|
dirmngr.enable = true;
|
||||||
|
agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Use less privileged nixos user
|
# Use less privileged nixos user
|
||||||
users.users = {
|
users.users = {
|
||||||
|
@ -196,12 +199,12 @@
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
ent
|
ent
|
||||||
haskellPackages.hopenpgp-tools
|
|
||||||
|
|
||||||
# Password generation tools
|
# Password generation tools
|
||||||
diceware
|
diceware
|
||||||
dicewareWebApp
|
dicewareWebApp
|
||||||
pwgen
|
pwgen
|
||||||
|
rng-tools
|
||||||
|
|
||||||
# Might be useful beyond the scope of the guide
|
# Might be useful beyond the scope of the guide
|
||||||
cfssl
|
cfssl
|
||||||
|
|
Loading…
Reference in New Issue