Add host modules and home options; update README
This commit is contained in:
@@ -2,5 +2,6 @@ _: {
|
||||
imports = [
|
||||
./hardware.nix
|
||||
./host-packages.nix
|
||||
./system-modules.nix
|
||||
];
|
||||
}
|
||||
|
||||
66
hosts/Garand-Desktop/home-modules.nix
Normal file
66
hosts/Garand-Desktop/home-modules.nix
Normal file
@@ -0,0 +1,66 @@
|
||||
_: {
|
||||
/*
|
||||
Development editors and IDEs
|
||||
*/
|
||||
# VSCodium: a free and open-source "demicrosofted" VSCode
|
||||
vscodium.enable = false;
|
||||
# Zed Editor: a modern, high‑performance code editor
|
||||
zed-editor = {
|
||||
# Enable Zed Editor
|
||||
enable = true;
|
||||
# Remote Server: enable remote editing capabilities
|
||||
remote-server = true;
|
||||
};
|
||||
|
||||
/*
|
||||
Web browsers
|
||||
*/
|
||||
# Librewolf: a privacy-focused Firefox fork
|
||||
librewolf.enable = true;
|
||||
# Ungoogled Chromium: a privacy-focused Chromium fork
|
||||
ungoogled-chromium.enable = true;
|
||||
|
||||
/*
|
||||
System utilities
|
||||
*/
|
||||
# Btop: a resource monitor for the terminal
|
||||
btop.enable = true;
|
||||
# Cava: terminal audio visualizer
|
||||
cava.enable = false;
|
||||
# Fastfetch: a fast system information tool
|
||||
fastfetch.enable = true;
|
||||
|
||||
/*
|
||||
Communication and synchronization
|
||||
*/
|
||||
# KDE Connect: integrate your phone and desktop
|
||||
kdeconnect.enable = false;
|
||||
# Nextcloud Client: sync files with a Nextcloud server
|
||||
nextcloud-client.enable = true;
|
||||
# Vesktop: a community‑driven Discord client
|
||||
vesktop.enable = true;
|
||||
|
||||
/*
|
||||
Gaming
|
||||
*/
|
||||
# Lutris: an open gaming platform
|
||||
lutris.enable = false;
|
||||
|
||||
/*
|
||||
Media recording and streaming
|
||||
*/
|
||||
# OBS Studio: streaming and recording software
|
||||
obs-studio.enable = false;
|
||||
|
||||
/*
|
||||
Office suite
|
||||
*/
|
||||
# OnlyOffice: an office suite compatible with Microsoft formats
|
||||
onlyoffice.enable = true;
|
||||
|
||||
/*
|
||||
Learning tools
|
||||
*/
|
||||
# Anki: spaced‑repetition flashcard program
|
||||
anki.enable = true;
|
||||
}
|
||||
87
hosts/Garand-Desktop/system-modules.nix
Normal file
87
hosts/Garand-Desktop/system-modules.nix
Normal file
@@ -0,0 +1,87 @@
|
||||
_: {
|
||||
/*
|
||||
Container & Packaging
|
||||
*/
|
||||
# Docker: container runtime and management
|
||||
docker.enable = true;
|
||||
# Distrobox: containerized development environments
|
||||
distrobox.enable = false;
|
||||
# Flatpak: universal packaging system for Linux
|
||||
flatpak.enable = true;
|
||||
# Lazydocker: simple TUI for Docker
|
||||
lazydocker.enable = false;
|
||||
|
||||
/*
|
||||
Gaming
|
||||
*/
|
||||
# GameMode: optimizes system performance for gaming
|
||||
gamemode.enable = true;
|
||||
# Gamescope: micro-compositor for games
|
||||
gamescope.enable = false;
|
||||
# Prism Launcher: Minecraft modded launcher
|
||||
prismlauncher.enable = false;
|
||||
# Steam: platform for buying and playing games
|
||||
steam.enable = true;
|
||||
# SpaceCadet Pinball: classic pinball game
|
||||
spaceCadetPinball.enable = true;
|
||||
# TTY Solitaire: terminal based solitaire game
|
||||
ttySolitaire.enable = true;
|
||||
|
||||
/*
|
||||
Development Tools
|
||||
*/
|
||||
# Exercism: coding practice platform
|
||||
exercism.enable = true;
|
||||
# Gedit: GNOME text editor
|
||||
gedit.enable = false;
|
||||
# Lazygit: simple TUI for git
|
||||
lazygit.enable = false;
|
||||
# OpenCode: tools for coding and development
|
||||
opencode.enable = true;
|
||||
|
||||
/*
|
||||
Communication & Collaboration
|
||||
*/
|
||||
# Mattermost: open-source Slack alternative
|
||||
mattermost.enable = true;
|
||||
# Slack: team communication and collaboration tool
|
||||
slack.enable = true;
|
||||
# Tutanota: secure email client
|
||||
tutanota.enable = true;
|
||||
|
||||
/*
|
||||
Productivity / Knowledge Management
|
||||
*/
|
||||
# Bitwarden: password manager (desktop)
|
||||
bitwarden.enable = false;
|
||||
# Iotas: lightweight notes manager
|
||||
iotas.enable = true;
|
||||
# Logseq: knowledge base and outliner
|
||||
logseq.enable = false;
|
||||
|
||||
/*
|
||||
Media & Graphics
|
||||
*/
|
||||
# Affinity: professional graphics suite
|
||||
affinity.enable = false;
|
||||
# Eye of GNOME: image viewer
|
||||
eyeOfGnome.enable = true;
|
||||
# FreeTube: privacy‑friendly YouTube client
|
||||
freetube.enable = false;
|
||||
# GIMP: gnu image manipulation program
|
||||
gimp.enable = false;
|
||||
# Kdenlive: video editing software
|
||||
kdenlive.enable = false;
|
||||
# Plex: media player and server client
|
||||
plex.enable = true;
|
||||
|
||||
/*
|
||||
Utilities / Misc
|
||||
*/
|
||||
# Eddie AirVPN: VPN client
|
||||
eddieAirVPN.enable = true;
|
||||
# Galculator: simple calculator
|
||||
galculator.enable = true;
|
||||
# Winboat: Windows remote desktop via RDP
|
||||
winboat.enable = false;
|
||||
}
|
||||
Reference in New Issue
Block a user