nix-dotfiles/hosts/goopnet-interface/default.nix
2025-01-02 11:54:24 -06:00

97 lines
2.5 KiB
Nix
Executable file

{ config, lib, pkgs, ... }:
{
imports = [
./hardware.nix
];
hm.home.packages = with pkgs; [
# archives
zip xz unzip p7zip zstd
# utils
ffmpeg ripgrep jq libqalculate
# nix
nix-output-monitor nix-prefetch-scripts nix-top
# system
btop duf lm_sensors ethtool pciutils usbutils powertop killall
# debug
strace ltrace lsof helvum
# apps
firefox qalculate-gtk krita inkscape onlyoffice-desktopeditors vlc nicotine-plus transmission_4-gtk font-manager obs-studio imhex kdePackages.kdenlive
# compatibility
wineWowPackages.waylandFull winetricks
# misc
bat file which packwiz yt-dlp fastfetch hyfetch trashy wev
# games
prismlauncher
] ++ (with pkgs.my; [
# none yet
]) ++ (with pkgs.gnome; [
# yay gnomeware!!!!!!!!!!!!!! yum
nautilus gnome-disk-utility pkgs.gnome-text-editor pkgs.baobab file-roller gnome-system-monitor loupe pkgs.gnome-weather
]);
modules = {
security.useDoas = true;
hardware = {
bluetooth.enable = true;
pipewire.enable = true;
print.enable = true;
pointer.enable = true;
};
dev = {
enable = true;
};
desktop = {
# set to `x11` or `wayland`, improves compat
envProto = "wayland";
hyprland.enable = true;
hyprlock.enable = true;
hypridle.enable = true;
swww.enable = true;
gnome-keyring.enable = true;
mate-polkit.enable = true;
dunst.enable = true;
rofi.enable = true;
nwg-drawer.enable = true;
waybar.enable = true;
batsignal.enable = true;
wob.enable = true;
gammastep.enable = true;
clipse.enable = true;
# display manager + boot splash
sddm.enable = true;
plymouth.enable = true;
# theme, see `modules/desktop/themes`
themes.active = "catppuccin";
};
software = {
# system
system.eza.enable = true;
system.wezterm.enable = true;
system.fish.enable = true;
system.syncthing.enable = true;
system.flatpak.enable = true;
system.mpv.enable = true;
# editors
editors.micro.enable = true;
editors.vscode.enable = true;
# dev
dev.git.enable = true;
# distractions
distractions.discord.enable = true;
distractions.discord.vesktop = true;
distractions.gamemode.enable = true;
distractions.steam.enable = true;
# tools
tools.gpg.enable = true;
tools.rbw.enable = true;
tools.noisetorch.enable = true;
};
};
}