summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.lock15
-rw-r--r--flake.nix4
2 files changed, 9 insertions, 10 deletions
diff --git a/flake.lock b/flake.lock
index 7557f04..e88bfcd 100644
--- a/flake.lock
+++ b/flake.lock
@@ -47,16 +47,15 @@
47 ] 47 ]
48 }, 48 },
49 "locked": { 49 "locked": {
50 "lastModified": 1735344290, 50 "lastModified": 1736366465,
51 "narHash": "sha256-oJDtWPH1oJT34RJK1FSWjwX4qcGOBRkcNQPD0EbSfNM=", 51 "narHash": "sha256-Fo68EF6p/N9GJyHiAUbXtiE7IJlb3IMjK86LuxFMsRU=",
52 "owner": "nix-community", 52 "owner": "nix-community",
53 "repo": "home-manager", 53 "repo": "home-manager",
54 "rev": "613691f285dad87694c2ba1c9e6298d04736292d", 54 "rev": "7e00856596891850ba5ad4c5ecd2ed74468c08c5",
55 "type": "github" 55 "type": "github"
56 }, 56 },
57 "original": { 57 "original": {
58 "owner": "nix-community", 58 "owner": "nix-community",
59 "ref": "release-24.11",
60 "repo": "home-manager", 59 "repo": "home-manager",
61 "type": "github" 60 "type": "github"
62 } 61 }
@@ -78,16 +77,16 @@
78 }, 77 },
79 "nixpkgs": { 78 "nixpkgs": {
80 "locked": { 79 "locked": {
81 "lastModified": 1736200483, 80 "lastModified": 1736344531,
82 "narHash": "sha256-JO+lFN2HsCwSLMUWXHeOad6QUxOuwe9UOAF/iSl1J4I=", 81 "narHash": "sha256-8YVQ9ZbSfuUk2bUf2KRj60NRraLPKPS0Q4QFTbc+c2c=",
83 "owner": "nixos", 82 "owner": "nixos",
84 "repo": "nixpkgs", 83 "repo": "nixpkgs",
85 "rev": "3f0a8ac25fb674611b98089ca3a5dd6480175751", 84 "rev": "bffc22eb12172e6db3c5dde9e3e5628f8e3e7912",
86 "type": "github" 85 "type": "github"
87 }, 86 },
88 "original": { 87 "original": {
89 "owner": "nixos", 88 "owner": "nixos",
90 "ref": "nixos-24.11", 89 "ref": "nixos-unstable",
91 "repo": "nixpkgs", 90 "repo": "nixpkgs",
92 "type": "github" 91 "type": "github"
93 } 92 }
diff --git a/flake.nix b/flake.nix
index 7e4e4cb..96855c5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,10 +2,10 @@
2 description = "my nixos configuration"; 2 description = "my nixos configuration";
3 3
4 inputs = { 4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; 5 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
6 6
7 home-manager = { 7 home-manager = {
8 url = "github:nix-community/home-manager/release-24.11"; 8 url = "github:nix-community/home-manager";
9 inputs.nixpkgs.follows = "nixpkgs"; 9 inputs.nixpkgs.follows = "nixpkgs";
10 }; 10 };
11 11