this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lock and use nixos 25.11

+10 -5
+5
nixos/configuration_os.nix
··· 168 168 # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). 169 169 system.stateVersion = "25.05"; # Did you read the comment? 170 170 environment.sessionVariables.NIXOS_OZONE_WL = "1"; 171 + 172 + system.autoUpgrade.enable = true; 173 + system.autoUpgrade.allowReboot = true; 174 + system.autoUpgrade.channel = "https://channels.nixos.org/nixos-25.11"; 175 + 171 176 }
+4 -4
nixos/flake.lock
··· 2 2 "nodes": { 3 3 "nixpkgs": { 4 4 "locked": { 5 - "lastModified": 1768564909, 6 - "narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=", 5 + "lastModified": 1768621446, 6 + "narHash": "sha256-6YwHV1cjv6arXdF/PQc365h1j+Qje3Pydk501Rm4Q+4=", 7 7 "owner": "nixos", 8 8 "repo": "nixpkgs", 9 - "rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f", 9 + "rev": "72ac591e737060deab2b86d6952babd1f896d7c5", 10 10 "type": "github" 11 11 }, 12 12 "original": { 13 13 "owner": "nixos", 14 - "ref": "nixos-unstable", 14 + "ref": "nixos-25.11", 15 15 "repo": "nixpkgs", 16 16 "type": "github" 17 17 }
+1 -1
nixos/flake.nix
··· 1 1 { 2 2 inputs = { 3 - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 3 + nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; 4 4 }; 5 5 6 6 outputs = { self, nixpkgs }: {