From c266a6005905b7f341c78b97aea2de44a787755e Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 30 Nov 2023 03:46:40 +0100 Subject: [PATCH 1/4] flake: bump NixOS to 23.11 --- flake.lock | 16 ++++++++-------- flake.nix | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/flake.lock b/flake.lock index 3f699b0..9ae8be3 100644 --- a/flake.lock +++ b/flake.lock @@ -64,16 +64,16 @@ ] }, "locked": { - "lastModified": 1700392168, - "narHash": "sha256-v5LprEFx3u4+1vmds9K0/i7sHjT0IYGs7u9v54iz/OA=", + "lastModified": 1700814205, + "narHash": "sha256-lWqDPKHRbQfi+zNIivf031BUeyciVOtwCwTjyrhDB5g=", "owner": "nix-community", "repo": "home-manager", - "rev": "28535c3a34d79071f2ccb68671971ce0c0984d7e", + "rev": "aeb2232d7a32530d3448318790534d196bf9427a", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-23.05", + "ref": "release-23.11", "repo": "home-manager", "type": "github" } @@ -128,16 +128,16 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1700501263, - "narHash": "sha256-M0U063Ba2DKL4lMYI7XW13Rsk5tfUXnIYiAVa39AV/0=", + "lastModified": 1701156937, + "narHash": "sha256-jpMJOFvOTejx211D8z/gz0ErRtQPy6RXxgD2ZB86mso=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "f741f8a839912e272d7e87ccf4b9dbc6012cdaf9", + "rev": "7c4c20509c4363195841faa6c911777a134acdf3", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-23.05", + "ref": "nixos-23.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 73ef6d6..21c4a5b 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ type = "github"; owner = "NixOS"; repo = "nixpkgs"; - ref = "nixos-23.05"; + ref = "nixos-23.11"; }; nixpkgs-unstable-small = { @@ -25,7 +25,7 @@ type = "github"; owner = "nix-community"; repo = "home-manager"; - ref = "release-23.05"; + ref = "release-23.11"; inputs.nixpkgs.follows = "nixpkgs"; }; From 45a252d17afe2088b8cf8a9b5b6a23eadb880002 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 30 Nov 2023 03:47:24 +0100 Subject: [PATCH 2/4] home: firefox: remove deprecation warning the tridactyl-specific option was removed --- home/firefox.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/firefox.nix b/home/firefox.nix index c633f33..3411adf 100644 --- a/home/firefox.nix +++ b/home/firefox.nix @@ -20,9 +20,9 @@ in { programs.firefox = { enable = true; package = pkgs.firefox.override { - cfg = { - enableTridactylNative = true; - }; + nativeMessagingHosts = [ + pkgs.tridactyl-native + ]; }; }; }; From d199eaf7b2347feb41ac001d2bff909f23d37130 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 30 Nov 2023 03:54:39 +0100 Subject: [PATCH 3/4] base: users: don't use deprecated passwordFile opt --- base/users.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/users.nix b/base/users.nix index 1e9d845..acbbc0d 100644 --- a/base/users.nix +++ b/base/users.nix @@ -8,10 +8,10 @@ in { users.mutableUsers = false; users.users.root = { - passwordFile = config.age.secrets."users/root-hashed-password".path; + hashedPasswordFile = config.age.secrets."users/root-hashed-password".path; }; users.users.alarsyo = { - passwordFile = config.age.secrets."users/alarsyo-hashed-password".path; + hashedPasswordFile = config.age.secrets."users/alarsyo-hashed-password".path; isNormalUser = true; extraGroups = [ "media" From cfa9367b57ea65386017289713a9b21b2adbc436 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 30 Nov 2023 04:08:34 +0100 Subject: [PATCH 4/4] hephaestus: run latest kernel --- hosts/hephaestus/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/hephaestus/default.nix b/hosts/hephaestus/default.nix index f5cf2e4..5292387 100644 --- a/hosts/hephaestus/default.nix +++ b/hosts/hephaestus/default.nix @@ -16,7 +16,7 @@ hardware.amdgpu.opencl = false; - boot.kernelPackages = pkgs.linuxPackages; + boot.kernelPackages = pkgs.linuxPackages_6_6; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true;