Compare commits

..

2 Commits

Author SHA1 Message Date
f44ddb256b flake: update inputs.stable
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-06-02 16:06:58 +05:30
3d2befc555 home: fix pkgs generation for other users
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-06-02 16:05:08 +05:30
3 changed files with 8 additions and 8 deletions

8
flake.lock generated
View File

@@ -974,16 +974,16 @@
},
"stable": {
"locked": {
"lastModified": 1716795920,
"narHash": "sha256-rVILUKoMmEDIXN3b3Oci9pdSDAK52NPbzxwndkpsmkc=",
"lastModified": 1717284475,
"narHash": "sha256-SujMRmR/1TqanXZMC9gYNXTJHNy1deOmEj3ClE0zY0M=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "70e5ed1d3185d9962646c86496eee88788ffb2f4",
"rev": "5a25dc6b7ebfa0747dce67c85480eeda87f6df7a",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "release-23.11",
"ref": "release-24.05",
"repo": "nixpkgs",
"type": "github"
}

View File

@@ -4,7 +4,7 @@
inputs = {
nixpkgs.url = github:nixos/nixpkgs/nixpkgs-unstable;
stable.url = github:nixos/nixpkgs/release-23.11;
stable.url = github:nixos/nixpkgs/release-24.05;
flake-parts.url = github:hercules-ci/flake-parts;

View File

@@ -54,7 +54,7 @@ in
stateVersion = "23.05";
};
}] ++ common;
pkgs = self.legacyPackages.aarch64-linux;
pkgs = mkPkgs "aarch64-linux";
};
bat = inputs.home-manager.lib.homeManagerConfiguration {
@@ -66,7 +66,7 @@ in
stateVersion = "23.05";
};
}] ++ common;
pkgs = self.legacyPackages.x86_64-linux;
pkgs = mkPkgs "x86_64-linux";
};
spin = inputs.home-manager.lib.homeManagerConfiguration {
@@ -78,7 +78,7 @@ in
stateVersion = "23.05";
};
}] ++ common;
pkgs = self.legacyPackages.x86_64-linux;
pkgs = mkPkgs "x86_64-linux";
};
};
}