From 8157575ad5525184006fa8533a14281e06f0f984 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Wed, 22 Jan 2025 12:59:05 +0100 Subject: [PATCH 1/4] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixos-hardware': 'github:NixOS/nixos-hardware/8870dcaff63dfc6647fb10648b827e9d40b0a337' (2025-01-09) → 'github:NixOS/nixos-hardware/61c79181e77ef774ab0468b28a24bc2647d498d6' (2025-01-20) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/635e887b48521e912a516625eee7df6cf0eba9c1' (2025-01-12) → 'github:NixOS/nixpkgs/ae584d90cbd0396a422289ee3efb1f1c9d141dc3' (2025-01-20) --- flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index f687621..05875f6 100644 --- a/flake.lock +++ b/flake.lock @@ -193,11 +193,11 @@ }, "nixos-hardware": { "locked": { - "lastModified": 1736441705, - "narHash": "sha256-OL7leZ6KBhcDF3nEKe4aZVfIm6xQpb1Kb+mxySIP93o=", + "lastModified": 1737359802, + "narHash": "sha256-utplyRM6pqnN940gfaLFBb9oUCSzkan86IvmkhsVlN8=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "8870dcaff63dfc6647fb10648b827e9d40b0a337", + "rev": "61c79181e77ef774ab0468b28a24bc2647d498d6", "type": "github" }, "original": { @@ -257,11 +257,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1736684107, - "narHash": "sha256-vH5mXxEvZeoGNkqKoCluhTGfoeXCZ1seYhC2pbMN0sg=", + "lastModified": 1737404927, + "narHash": "sha256-e1WgPJpIYbOuokjgylcsuoEUCB4Jl2rQXa2LUD6XAG8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "635e887b48521e912a516625eee7df6cf0eba9c1", + "rev": "ae584d90cbd0396a422289ee3efb1f1c9d141dc3", "type": "github" }, "original": { From 69b304545d6b1a140a99ee1f72d8dcb1b61e40c9 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 27 Jan 2025 17:22:34 +0100 Subject: [PATCH 2/4] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'nixpkgs-unstable-small': 'github:NixOS/nixpkgs/62e9d4ae7c343fdae23f7cf347d98204488c1401' (2025-01-16) → 'github:NixOS/nixpkgs/970c26517231e07b71f3eaaa9aa2ebe539c354d3' (2025-01-27) --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 05875f6..68b0e32 100644 --- a/flake.lock +++ b/flake.lock @@ -225,11 +225,11 @@ }, "nixpkgs-unstable-small": { "locked": { - "lastModified": 1737007772, - "narHash": "sha256-YmN6LpUQwOaY7gYdcXtX5CtpT4W37taAjbAF6WOmY4Y=", + "lastModified": 1737959576, + "narHash": "sha256-eEOiMxfxYSLa/8jcDZEK46TjqLO+8cJ5C9ufHXz1oIw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "62e9d4ae7c343fdae23f7cf347d98204488c1401", + "rev": "970c26517231e07b71f3eaaa9aa2ebe539c354d3", "type": "github" }, "original": { From 233468f6846e62eabda84e47592b6cd9880748c8 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 27 Jan 2025 17:24:58 +0100 Subject: [PATCH 3/4] talos: remove zed Not using it enough --- hosts/talos/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/hosts/talos/default.nix b/hosts/talos/default.nix index 1cd71f6..1b475c4 100644 --- a/hosts/talos/default.nix +++ b/hosts/talos/default.nix @@ -157,7 +157,6 @@ services.power-profiles-daemon.enable = true; environment.systemPackages = [ - pkgs.unstable.zed-editor pkgs.foot ]; From de058169d5539fc2e5b2a7a7800194ab047874a9 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 27 Jan 2025 17:25:10 +0100 Subject: [PATCH 4/4] flake: pin flakes to registry --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 09c2017..622da02 100644 --- a/flake.nix +++ b/flake.nix @@ -74,6 +74,10 @@ home-manager.users.alarsyo = import ./home; home-manager.verbose = true; }; + nix-registry = { + nix.registry.nixpkgs.flake = nixpkgs; + nix.registry.unstable.flake = inputs.nixpkgs-unstable-small; + }; }; overlays = import ./overlays;