feat: bump to 24.11
This commit is contained in:
parent
9abf353f88
commit
b4e03a9dc2
24
flake.lock
generated
24
flake.lock
generated
@ -319,16 +319,16 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1726989464,
|
||||
"narHash": "sha256-Vl+WVTJwutXkimwGprnEtXc/s/s8sMuXzqXaspIGlwM=",
|
||||
"lastModified": 1731880681,
|
||||
"narHash": "sha256-FmYTkIyPBUxSWgA7DPIVTsCCMvSSbs56yOtHpLNSnKg=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "2f23fa308a7c067e52dfcc30a0758f47043ec176",
|
||||
"rev": "aecd341dfead1c3ef7a3c15468ecd71e8343b7c6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"ref": "release-24.05",
|
||||
"ref": "release-24.11",
|
||||
"repo": "home-manager",
|
||||
"type": "github"
|
||||
}
|
||||
@ -352,7 +352,7 @@
|
||||
"local-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 0,
|
||||
"narHash": "sha256-9xAEU7FSzN5kEu+LGYSQwoYySauT7XmyxCTfkdS6eBs=",
|
||||
"narHash": "sha256-uewgkTWbDOpOP+wEA3f03XEKsPHsJi0iDqBGQnxWQo0=",
|
||||
"path": "/home/giulio/dev/nixpkgs",
|
||||
"type": "path"
|
||||
},
|
||||
@ -481,11 +481,11 @@
|
||||
},
|
||||
"nixos-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1731762464,
|
||||
"narHash": "sha256-kr+46IEV/3hqO/IlXvucFeNpVkrNRvIhHFnEv/k381s=",
|
||||
"lastModified": 1731955258,
|
||||
"narHash": "sha256-3p5dNocIBvqugZyMLnT7gjE9DF2WV5kVbVlLTbYI+eQ=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "0361bb03c0bad5f32e7d3010da3921cba20b3126",
|
||||
"rev": "2b552e98ea099d6b7d1a809e32a478f1f6258dd1",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -497,16 +497,16 @@
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1731737433,
|
||||
"narHash": "sha256-pT/lio7wmcXBZreoQ3xsPYd2wGvlFNKnottDYpwJSfs=",
|
||||
"lastModified": 1731951205,
|
||||
"narHash": "sha256-9YhDFPy6K7vUA9NVvlIrV0dFxrARqKgTFhst94yblkM=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "3c1c28c6d6691914707719d33f2e88b0feb7c58d",
|
||||
"rev": "0054a256665f0df8d61b4df921280d6994f2c284",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "release-24.05",
|
||||
"ref": "release-24.11",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
|
@ -1,11 +1,11 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-24.05";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-24.11";
|
||||
nixos-unstable.url = "github:NixOS/nixpkgs/master";
|
||||
local-unstable.url = "path:///home/giulio/dev/nixpkgs";
|
||||
teslamate-flake.url = "github:teslamate-org/teslamate/v1.31.1";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-24.05";
|
||||
url = "github:nix-community/home-manager/release-24.11";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nvidia-patch = {
|
||||
|
@ -28,20 +28,11 @@ in
|
||||
./dns.nix
|
||||
# ./minecraft.nix
|
||||
./prowlarr.nix
|
||||
./libreddit.nix
|
||||
./redlib.nix
|
||||
# ./invidious.nix
|
||||
# ./lidarr.nix
|
||||
./navidrome.nix
|
||||
./jellyfin.nix
|
||||
# ./prosody.nix
|
||||
# ./deluge.nix
|
||||
#./calibre.nix
|
||||
./docker.nix
|
||||
# ./keycloak.nix
|
||||
# ./runas.nix
|
||||
./tailscale.nix
|
||||
# ./searx.nix
|
||||
# ./plex.nix
|
||||
./headscale.nix
|
||||
./llm.nix
|
||||
# ./photoprism.nix
|
||||
@ -138,7 +129,6 @@ in
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [ vaapiVdpau ];
|
||||
driSupport = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
|
@ -37,7 +37,7 @@
|
||||
useGlobalPkgs = true;
|
||||
};
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
system.stateVersion = "24.11";
|
||||
}
|
||||
|
||||
home-manager.nixosModules.home-manager
|
||||
|
Loading…
Reference in New Issue
Block a user