remove nixpkgs-unstable
This commit is contained in:
parent
beb747d508
commit
7f8623c866
23
flake.lock
23
flake.lock
@ -246,29 +246,13 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-unstable": {
|
||||
"locked": {
|
||||
"lastModified": 1716948383,
|
||||
"narHash": "sha256-SzDKxseEcHR5KzPXLwsemyTR/kaM9whxeiJohbL04rs=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "ad57eef4ef0659193044870c731987a6df5cf56b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1717128264,
|
||||
"narHash": "sha256-G1v5wsi6TAyKWUZcfU8yvbhRrXXL2jVsX3OP3o3PIfQ=",
|
||||
"lastModified": 1717137004,
|
||||
"narHash": "sha256-bTPVuz7H9Rpa5hyUvFqL8VBZTnh9u6FEd/ZSrJNHqcM=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "5087d4ff41071cbc7d2f376df89d81bde2e00745",
|
||||
"rev": "83d68f7515cf4915933e6c9a431baf81110433f9",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -319,7 +303,6 @@
|
||||
"nixgl": "nixgl",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||
"nur": "nur",
|
||||
"pre-commit-hooks": "pre-commit-hooks"
|
||||
}
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
flake-compat.url = "github:nix-community/flake-compat";
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
@ -76,7 +75,6 @@
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
nixpkgs-unstable,
|
||||
agenix,
|
||||
deploy-rs,
|
||||
flake-utils,
|
||||
@ -115,10 +113,6 @@
|
||||
# TODO: copied from 24.05
|
||||
turbo = super.callPackage ./pkgs/turbo.nix {};
|
||||
|
||||
pkgs-unstable = import nixpkgs-unstable {
|
||||
inherit (super) system;
|
||||
};
|
||||
|
||||
crossArm64 = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
hostPlatform.config = "aarch64-linux";
|
||||
|
@ -248,7 +248,7 @@ in {
|
||||
winetricks
|
||||
wineWowPackages.full
|
||||
])
|
||||
[pkgs.pkgs-unstable.undocker]
|
||||
[pkgs.undocker]
|
||||
];
|
||||
|
||||
# https://discourse.nixos.org/t/nixos-rebuild-switch-upgrade-networkmanager-wait-online-service-failure/30746
|
||||
|
@ -70,9 +70,9 @@ in {
|
||||
[extract_url]
|
||||
|
||||
(lib.mkIf devTools [
|
||||
pkgs-unstable.go_1_22
|
||||
pkgs-unstable.go-tools
|
||||
pkgs-unstable.zig_0_12
|
||||
go_1_22
|
||||
go-tools
|
||||
zig_0_12
|
||||
])
|
||||
|
||||
(lib.mkIf hmOnly [
|
||||
|
@ -6,22 +6,18 @@
|
||||
mj.base.users.email = null;
|
||||
mj.base.users.user.extraGroups = ["docker"];
|
||||
|
||||
environment.systemPackages =
|
||||
(with pkgs; [
|
||||
#swc
|
||||
#nodejs
|
||||
#typescript
|
||||
#concurrently
|
||||
bats
|
||||
mysql80
|
||||
kubectl
|
||||
kubectl-node-shell
|
||||
kubectx
|
||||
google-cloud-sdk
|
||||
])
|
||||
++ (with pkgs.pkgs-unstable; [
|
||||
#turbo
|
||||
]);
|
||||
environment.systemPackages = with pkgs; [
|
||||
#swc
|
||||
#nodejs
|
||||
#typescript
|
||||
#concurrently
|
||||
bats
|
||||
mysql80
|
||||
kubectl
|
||||
kubectl-node-shell
|
||||
kubectx
|
||||
google-cloud-sdk
|
||||
];
|
||||
|
||||
services.clamav = {
|
||||
updater.enable = true;
|
||||
|
Loading…
Reference in New Issue
Block a user