diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2026-07-01 00:30:08 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2026-07-01 00:30:08 +0200 |
| commit | fb467b6294dddd2f92b105ed16c4cd949e362af6 (patch) | |
| tree | 1915ac0e430c3f89f938944f1b5f115f7d02b93a | |
| parent | 84a029ebbeae8be0d659e5c4b89a0a0fa8a8843e (diff) | |
| download | hermes-fb467b6294dddd2f92b105ed16c4cd949e362af6.tar.gz hermes-fb467b6294dddd2f92b105ed16c4cd949e362af6.tar.bz2 hermes-fb467b6294dddd2f92b105ed16c4cd949e362af6.tar.xz | |
| -rw-r--r-- | config/default.nix | 2 | ||||
| -rw-r--r-- | config/networking.nix | 2 | ||||
| -rw-r--r-- | flake.lock | 16 | ||||
| -rw-r--r-- | flake.nix | 6 |
4 files changed, 14 insertions, 12 deletions
diff --git a/config/default.nix b/config/default.nix index a0b61aa..7aaea55 100644 --- a/config/default.nix +++ b/config/default.nix @@ -18,5 +18,5 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "25.11"; # Did you read the comment? + system.stateVersion = "26.05"; # Did you read the comment? } diff --git a/config/networking.nix b/config/networking.nix index 8322f8c..556cdb6 100644 --- a/config/networking.nix +++ b/config/networking.nix @@ -26,7 +26,7 @@ services.resolved = { enable = true; - dnsovertls = "opportunistic"; + settings.Resolve.DNSOverTLS = "opportunistic"; }; services.tailscale = { @@ -181,11 +181,11 @@ "nur": "nur" }, "locked": { - "lastModified": 1782645107, - "narHash": "sha256-X9bt5fWHZMxpQSbf+0yl3epThPsdmR5nn80gpp0JXkI=", + "lastModified": 1782852892, + "narHash": "sha256-0d4sjIW9p8ldvbWpLJES99QhDbZ9q89vxWb6NXeddNw=", "ref": "refs/heads/master", - "rev": "92003d192bda93665b9934659824eaeda71130c2", - "revCount": 400, + "rev": "fe0d977f54db709b8cd505c387476c03f93c5099", + "revCount": 403, "type": "git", "url": "https://git.aristote.fr/nix/my-nixpkgs" }, @@ -341,16 +341,16 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1782651437, - "narHash": "sha256-10srBgrJz7JOWzS1KG5BhrwHCUPTcPqZgwNKo5N9YE4=", + "lastModified": 1782691344, + "narHash": "sha256-i5nw9BYYsMDAaOC4J+JmTof6b2GhlyH076awYRNrTV8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0a47451dbe2082a660b88a79a83efdc8d85de445", + "rev": "1f01958ffb5b3545c96d9ef2f4e24c5e5e1eb846", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-25.11", + "ref": "nixos-26.05", "repo": "nixpkgs", "type": "github" } @@ -5,7 +5,7 @@ inputs.nixpkgs.follows = "/nixpkgs"; }; my-nixpkgs.url = "git+https://git.aristote.fr/nix/my-nixpkgs"; - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05"; }; outputs = @@ -25,7 +25,9 @@ { ... }: { nixpkgs.overlays = [ - (self: _: { personal = { inherit (personal-webpage.packages."${self.stdenv.hostPlatform.system}") webpage; }; }) + (self: _: { + personal = { inherit (personal-webpage.packages."${self.stdenv.hostPlatform.system}") webpage; }; + }) # TODO the order shouldn't matter, yet this overlay doesn't work # if it comes first my-nixpkgs.overlays.personal |
