Switched to 24.05 channel

This commit is contained in:
Random936 2024-06-09 12:52:36 -07:00
parent f168c735f7
commit caf4bed854
8 changed files with 15 additions and 16 deletions

16
flake.lock generated
View File

@ -7,16 +7,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1715381426, "lastModified": 1717527182,
"narHash": "sha256-wPuqrAQGdv3ISs74nJfGb+Yprm23U/rFpcHFFNWgM94=", "narHash": "sha256-vWSkg6AMok1UUQiSYVdGMOXKD2cDFnajITiSi0Zjd1A=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "ab5542e9dbd13d0100f8baae2bc2d68af901f4b4", "rev": "845a5c4c073f74105022533907703441e0464bc3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-23.11", "ref": "release-24.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
@ -43,16 +43,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1715668745, "lastModified": 1717696253,
"narHash": "sha256-xp62OkRkbUDNUc6VSqH02jB0FbOS+MsfMb7wL1RJOfA=", "narHash": "sha256-1+ua0ggXlYYPLTmMl3YeYYsBXDSCqT+Gw3u6l4gvMhA=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9ddcaffecdf098822d944d4147dd8da30b4e6843", "rev": "9b5328b7f761a7bbdc0e332ac4cf076a3eedb89b",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-23.11", "ref": "nixos-24.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@ -2,9 +2,9 @@
description = "Configuration flake for RandomCTF"; description = "Configuration flake for RandomCTF";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.11"; url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };

View File

@ -25,7 +25,6 @@
ffuf ffuf
nikto nikto
sqlmap sqlmap
wpscan
thc-hydra thc-hydra
exploitdb exploitdb
feroxbuster feroxbuster
@ -54,4 +53,6 @@
home.file = { home.file = {
".functions.zsh".source = ../dotfiles/.functions.zsh; ".functions.zsh".source = ../dotfiles/.functions.zsh;
}; };
home.stateVersion = "24.05";
} }

View File

@ -18,5 +18,4 @@ in
]; ];
home.file.".tmux/plugins/tpm".source = "${mypkgs.tpm}"; home.file.".tmux/plugins/tpm".source = "${mypkgs.tpm}";
home.stateVersion = "23.11";
} }

View File

@ -58,6 +58,4 @@
".config/polybar/config.ini".source = ../dotfiles/.config/polybar/config.ini; ".config/polybar/config.ini".source = ../dotfiles/.config/polybar/config.ini;
}; };
home.stateVersion = "23.11";
} }

View File

@ -7,7 +7,7 @@
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
enableAutosuggestions = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
history.size = 100000000; history.size = 100000000;

View File

@ -120,5 +120,5 @@
# Enable sshd service. # Enable sshd service.
services.openssh.enable = true; services.openssh.enable = true;
system.stateVersion = "23.11"; system.stateVersion = "24.05";
} }

View File

@ -53,5 +53,6 @@
}; };
# Used for backwards compatibility. # Used for backwards compatibility.
system.stateVersion = 4; system.stateVersion = 4;
} }