update (rust 1.80)

This commit is contained in:
Daniel Lundin 2024-08-19 09:37:43 +02:00
parent 510ed39bbd
commit 8c439e2ce1
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI
2 changed files with 26 additions and 27 deletions

View file

@ -132,11 +132,11 @@
"zls": "zls" "zls": "zls"
}, },
"locked": { "locked": {
"lastModified": 1723659157, "lastModified": 1724175906,
"narHash": "sha256-IW15cd4jrTK9p2arrbNxnksZLUgsNz9wWzXBhjx42rA=", "narHash": "sha256-V4aYjELMU8UtqjU99lDqkwQpkv5vx0sSWq015ZZ91Mg=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "93c377c6a113b5cfb87370bdaf5cd63b58e2fe85", "rev": "c9f40b7b8d22e2aa157c226e406485d85d2075f9",
"revCount": 6900, "revCount": 7013,
"type": "git", "type": "git",
"url": "ssh://git@github.com/ghostty-org/ghostty" "url": "ssh://git@github.com/ghostty-org/ghostty"
}, },
@ -189,11 +189,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1723399884, "lastModified": 1723986931,
"narHash": "sha256-97wn0ihhGqfMb8WcUgzzkM/TuAxce2Gd20A8oiruju4=", "narHash": "sha256-Fy+KEvDQ+Hc8lJAV3t6leXhZJ2ncU5/esxkgt3b8DEY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "086f619dd991a4d355c07837448244029fc2d9ab", "rev": "2598861031b78aadb4da7269df7ca9ddfc3e1671",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -232,11 +232,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1723362943, "lastModified": 1723991338,
"narHash": "sha256-dFZRVSgmJkyM0bkPpaYRtG/kRMRTorUIDj8BxoOt1T4=", "narHash": "sha256-Grh5PF0+gootJfOJFenTTxDTYPidA3V28dqJ/WV7iis=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a58bc8ad779655e790115244571758e8de055e3d", "rev": "8a3354191c0d7144db9756a74755672387b702ba",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -89,6 +89,7 @@
firewall.enable = false; firewall.enable = false;
networkmanager.enable = false; networkmanager.enable = false;
useDHCP = false; useDHCP = false;
wireless.iwd = { wireless.iwd = {
enable = true; enable = true;
settings = { settings = {
@ -97,7 +98,6 @@
EnableIPv6 = false; EnableIPv6 = false;
NameResolvingService = "systemd"; NameResolvingService = "systemd";
}; };
Scan.DisablePeriodicScan = true;
Settings = { Settings = {
AutoConnect = true; AutoConnect = true;
}; };
@ -115,22 +115,20 @@
linkConfig.RequiredForOnline = "routable"; linkConfig.RequiredForOnline = "routable";
}; };
# FIXME: pam_rssh is broken from rust 1.80 upgrade security = {
# environment.systemPackages = [ pkgs.pam_rssh ]; pam.services.doas =
# security = { { config, ... }:
# pam.services.doas = {
# { config, ... }: rules.auth.rssh = {
# { order = config.rules.auth.ssh_agent_auth.order - 1;
# rules.auth.rssh = { control = "sufficient";
# order = config.rules.auth.ssh_agent_auth.order - 1; modulePath = "${pkgs.pam_rssh}/lib/libpam_rssh.so";
# control = "sufficient"; settings.authorized_keys_command = pkgs.writeShellScript "get-authorized-keys" ''
# modulePath = "${pkgs.pam_rssh}/lib/libpam_rssh.so"; cat "/etc/ssh/authorized_keys.d/$1"
# settings.authorized_keys_command = pkgs.writeShellScript "get-authorized-keys" '' '';
# cat "/etc/ssh/authorized_keys.d/$1" };
# ''; };
# }; };
# };
# };
services.resolved = { services.resolved = {
enable = true; enable = true;
@ -166,6 +164,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ffado ffado
lm_sensors lm_sensors
pkgs.pam_rssh
openconnect openconnect
]; ];