44 lines
669 B
Nix
44 lines
669 B
Nix
{ config, pkgs, lib, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./firefox.nix
|
|
./chromium.nix
|
|
];
|
|
home.username = "games";
|
|
home.homeDirectory = "/home/games";
|
|
home.packages = with pkgs; [
|
|
# System
|
|
kdePackages.kate
|
|
kdePackages.kcalc
|
|
# Office
|
|
libreoffice
|
|
# Security
|
|
keepassxc
|
|
veracrypt
|
|
protonvpn-gui
|
|
# Media
|
|
inkscape
|
|
blender
|
|
obs-studio
|
|
cheese
|
|
gimp
|
|
vlc
|
|
# Messengers
|
|
webcord
|
|
# Development
|
|
vscodium
|
|
# Gaming
|
|
mangohud
|
|
prismlauncher
|
|
lutris-free
|
|
# Terminal Tools
|
|
tmux
|
|
mosh
|
|
btop
|
|
fastfetch
|
|
kb-one.olympus
|
|
ripgrep
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|