This commit is contained in:
shibazaki 2025-05-20 10:12:52 +02:00
commit e9b9f29a26
5 changed files with 8 additions and 2 deletions

View File

@ -7,7 +7,7 @@
nvf.url = "git+https://gitea.homework.zip/five/neovim"; nvf.url = "git+https://gitea.homework.zip/five/neovim";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/master"; # Optional, use master for latest HM url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
@ -17,7 +17,7 @@
}; };
stylix = { stylix = {
url = "github:danth/stylix"; # stylix follows unstable automatically url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
rocm = { rocm = {

View File

@ -8,6 +8,7 @@
cybersecTools = with pkgs; [ cybersecTools = with pkgs; [
# Nmap and related tools # Nmap and related tools
nmap nmap
rustscan
gobuster gobuster
hydra hydra
ffuf ffuf

View File

@ -28,5 +28,6 @@
eclipses.eclipse-sdk eclipses.eclipse-sdk
maven maven
super-slicer
]; ];
} }

View File

@ -9,6 +9,8 @@
mesa mesa
libxkbcommon libxkbcommon
clinfo clinfo
pkg-config
alsa-lib.dev
]; ];
hardware.opengl.extraPackages = with pkgs; [ hardware.opengl.extraPackages = with pkgs; [

View File

@ -28,4 +28,6 @@
]; ];
services.upower.enable = true; services.upower.enable = true;
hardware.alsa.enablePersistence = true;
} }