reformat programs

This commit is contained in:
William 2026-02-07 10:00:06 -03:00
parent 0112637288
commit 6d28510dca
5 changed files with 124 additions and 129 deletions

View file

@ -1,19 +1,17 @@
{ ... }:
{
flake.modules.nixos.programs-graphics = { pkgs, ... }: {
flake.modules.nixos.programs-graphics =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Image Editing
gimp
inkscape
# CAD & 3D Modeling
plasticity
];
services.flatpak.packages = [
# Vector Graphics
"com.boxy_svg.BoxySVG"
# 3D Printing / Slicing
rec {
appId = "io.github.softfever.OrcaSlicer";
sha256 = "0hdx5sg6fknj1pfnfxvlfwb5h6y1vjr6fyajbsnjph5gkp97c6p1";

View file

@ -2,20 +2,20 @@
{
flake.modules = {
nixos.programs-media = { pkgs, ... }: {
nixos.programs-media =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Audio
decibels
# Video
showtime
# Image Viewer
loupe
# Recording & Streaming
obs-studio
showtime
];
};
homeManager.programs-media = { pkgs, ... }: {
homeManager.programs-media =
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [

View file

@ -1,24 +1,21 @@
{ ... }:
{
flake.modules.nixos.programs-office = { pkgs, ... }: {
flake.modules.nixos.programs-office =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Spelling
aspell
aspellDicts.de
aspellDicts.en
aspellDicts.en-computers
aspellDicts.pt_BR
# Document Viewing
papers
# Presentations
presenterm
# Note Taking & Drawing
rnote
];
services.flatpak.packages = [
# Office Suite
"com.collabora.Office"
];
};

View file

@ -2,20 +2,17 @@
{
flake.modules = {
nixos.programs-utilities = { pkgs, ... }: {
nixos.programs-utilities =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Terminal
ghostty
# File Management
nautilus
gnome-disk-utility
# Archive Tools
p7zip
unrar
# Cloud & Remote
rclone
# System Monitoring
mission-center
nautilus
p7zip
rclone
unrar
# Desktop Integration
adwaita-icon-theme
junction
@ -26,14 +23,14 @@
];
services.flatpak.packages = [
# Flatpak Management
"com.github.tchx84.Flatseal"
# Remote Desktop
"com.rustdesk.RustDesk"
];
};
homeManager.programs-utilities = { pkgs, ... }: {
homeManager.programs-utilities =
{ pkgs, ... }:
{
programs = {
ghostty = {
enable = true;

View file

@ -1,18 +1,21 @@
{ ... }:
{
flake.modules.nixos.programs-web = { inputs, pkgs, system, ... }: {
flake.modules.nixos.programs-web =
{
inputs,
pkgs,
system,
...
}:
{
environment.systemPackages = with pkgs; [
# Browsers
inputs.zen-browser.packages."${system}".default
tor-browser
# Communication
vesktop
# Cloud & Sync
bitwarden-desktop
nextcloud-client
# Downloads
fragments
nextcloud-client
tor-browser
vesktop
];
};
}