added
This commit is contained in:
parent
bf16581c61
commit
a9c27e462b
8 changed files with 78 additions and 0 deletions
|
|
@ -18,6 +18,8 @@
|
||||||
./modules/emulators.nix
|
./modules/emulators.nix
|
||||||
./modules/discord.nix
|
./modules/discord.nix
|
||||||
./modules/brave.nix
|
./modules/brave.nix
|
||||||
|
./modules/spotify.nix
|
||||||
|
./modules/obs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.username = "cobray";
|
home.username = "cobray";
|
||||||
|
|
|
||||||
5
home-manager/modules/obs.nix
Normal file
5
home-manager/modules/obs.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
obs-studio
|
||||||
|
];
|
||||||
|
}
|
||||||
5
home-manager/modules/spotify.nix
Normal file
5
home-manager/modules/spotify.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
spotify
|
||||||
|
];
|
||||||
|
}
|
||||||
28
hosts/modules/core.nix
Normal file
28
hosts/modules/core.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
tree
|
||||||
|
fd
|
||||||
|
jq
|
||||||
|
gawk
|
||||||
|
psmisc
|
||||||
|
unzip
|
||||||
|
bash
|
||||||
|
maim
|
||||||
|
wrk
|
||||||
|
bitwarden
|
||||||
|
hashcat
|
||||||
|
cachix
|
||||||
|
gcc
|
||||||
|
gnumake
|
||||||
|
cmake
|
||||||
|
ninja
|
||||||
|
binutils
|
||||||
|
gdb
|
||||||
|
pkg-config
|
||||||
|
autoconf
|
||||||
|
automake
|
||||||
|
libtool
|
||||||
|
nasm
|
||||||
|
nix-prefetch-git
|
||||||
|
];
|
||||||
|
}
|
||||||
7
hosts/modules/go.nix
Normal file
7
hosts/modules/go.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
go
|
||||||
|
go-tools
|
||||||
|
gopls
|
||||||
|
];
|
||||||
|
}
|
||||||
8
hosts/modules/java.nix
Normal file
8
hosts/modules/java.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
jdk17
|
||||||
|
maven
|
||||||
|
gradle
|
||||||
|
visualvm
|
||||||
|
];
|
||||||
|
}
|
||||||
17
hosts/modules/libs.nix
Normal file
17
hosts/modules/libs.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
linuxHeaders
|
||||||
|
freetype.dev
|
||||||
|
pixman
|
||||||
|
mesa
|
||||||
|
libglvnd
|
||||||
|
dbus.dev
|
||||||
|
openssl
|
||||||
|
openssl.dev
|
||||||
|
libxml2
|
||||||
|
zlib
|
||||||
|
zlib.dev
|
||||||
|
texlive.combined.scheme-full
|
||||||
|
poppler_utils
|
||||||
|
];
|
||||||
|
}
|
||||||
6
hosts/modules/udiskie.nix
Normal file
6
hosts/modules/udiskie.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{...}: {
|
||||||
|
services.udiskie = {
|
||||||
|
enable = true;
|
||||||
|
tray = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue