Initial commit
This commit is contained in:
30
roles/subroles/dev.nix
Normal file
30
roles/subroles/dev.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
vim
|
||||
vscodium
|
||||
|
||||
docker-compose
|
||||
|
||||
binutils
|
||||
curl
|
||||
htop
|
||||
nixfmt
|
||||
ripgrep
|
||||
shellcheck
|
||||
tmux
|
||||
unzip
|
||||
wget
|
||||
|
||||
git
|
||||
|
||||
rustup
|
||||
|
||||
direnv
|
||||
];
|
||||
|
||||
services.lorri.enable = true;
|
||||
|
||||
programs.adb.enable = true;
|
||||
}
|
20
roles/subroles/entertainment.nix
Normal file
20
roles/subroles/entertainment.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
steam
|
||||
steam-run
|
||||
#lutris
|
||||
#multimc
|
||||
#(wine.override { wineBuild = "wineWow"; })
|
||||
|
||||
mplayer
|
||||
spotify
|
||||
vlc
|
||||
|
||||
teamspeak_client
|
||||
];
|
||||
|
||||
# needed for steam
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
hardware.pulseaudio.support32Bit = true;
|
||||
}
|
12
roles/subroles/internet.nix
Normal file
12
roles/subroles/internet.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
chromium
|
||||
|
||||
thunderbird
|
||||
|
||||
riot-desktop
|
||||
tdesktop
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user