mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
add nvix as editor
This commit is contained in:
parent
df118f95a4
commit
ddb6a7f013
4 changed files with 36 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ in {
|
||||||
"hosts/common/core/shell.nix"
|
"hosts/common/core/shell.nix"
|
||||||
"hosts/common/core/sops.nix"
|
"hosts/common/core/sops.nix"
|
||||||
"hosts/common/core/ssh.nix"
|
"hosts/common/core/ssh.nix"
|
||||||
|
"hosts/common/core/editor.nix"
|
||||||
"hosts/common/users/primary"
|
"hosts/common/users/primary"
|
||||||
"hosts/common/users/primary/${platform}.nix"
|
"hosts/common/users/primary/${platform}.nix"
|
||||||
"modules/common"
|
"modules/common"
|
||||||
|
|
|
||||||
9
hosts/common/core/editor.nix
Normal file
9
hosts/common/core/editor.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
environment.systemPackages = [
|
||||||
|
inputs.nvix.packages.${pkgs.system}.default
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
protontricks = {
|
protontricks = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
extraCompatPackages = [pkgs.unstable.proton-ge-bin];
|
||||||
};
|
};
|
||||||
gamescope = {
|
gamescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -21,4 +22,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
vintagestory
|
||||||
|
mudlet
|
||||||
|
r2modman
|
||||||
|
prismlauncher
|
||||||
|
obs-studio
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
18
hosts/common/optional/pentesting.nix
Normal file
18
hosts/common/optional/pentesting.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
programs = {
|
||||||
|
wireshark = {
|
||||||
|
enable = true;
|
||||||
|
usbmon.enable = true;
|
||||||
|
dumpcap.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
metasploit
|
||||||
|
exploitdb
|
||||||
|
termshark
|
||||||
|
nmap
|
||||||
|
dirstalk
|
||||||
|
hashcat
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue