Added: Bunch of Programs

This commit is contained in:
2025-03-27 14:59:12 +01:00
parent 8415352b65
commit 53065b1bd1
246 changed files with 318 additions and 94 deletions

View File

@@ -1,23 +0,0 @@
{
pkgs,
config,
username,
...
}: {
programs = {
chromium = {
enable = true;
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
extensions = [
# {id = "";} // extension id, query from chrome web store
];
};
firefox = {
enable = true;
profiles.${username} = {};
};
#thunderbird.enable = true;
};
}

View File

@@ -1,10 +0,0 @@
{
imports = [
./browsers.nix
./common.nix
./git.nix
./media.nix
./xdg.nix
./neovim.nix
];
}

View File

@@ -0,0 +1,9 @@
{
imports = [
./git.nix
./neovim.nix
./fstl.nix
./openscad.nix
./sqllite_browser.nix
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install fstl
home.packages = with pkgs; [
fstl
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install OpenSCAD
home.packages = with pkgs; [
openscad
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install sqlitebrowser (DB Browser for SQLite)
home.packages = with pkgs; [
sqlitebrowser
];
}

View File

@@ -1,20 +0,0 @@
{
pkgs,
config,
username,
...
}: {
home.packages = with pkgs; [
# Launchers
steam
# itch
lutris
# Games
xonotic
# armagetron
freeciv
mindustry
openra
];
}

View File

@@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
itch
];
}

View File

@@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
lutris
];
}

View File

@@ -0,0 +1,13 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
xonotic
# armagetron
freeciv
mindustry
openra
];
}

View File

@@ -0,0 +1,9 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
steam
];
}

View File

@@ -1,35 +0,0 @@
{
pkgs,
config,
...
}:
# media - control and enjoy audio/video
{
# imports = [
# ];
home.packages = with pkgs; [
# audio control
pavucontrol
playerctl
pulsemixer
# images
imv
# Apps
spotify
];
programs = {
mpv = {
enable = true;
defaultProfiles = ["gpu-hq"];
scripts = [pkgs.mpvScripts.mpris];
};
obs-studio.enable = true;
};
services = {
playerctld.enable = true;
};
}

View File

@@ -0,0 +1,24 @@
{
pkgs,
config,
...
}:
{
home.packages = with pkgs; [
# audio control
pavucontrol
playerctl
pulsemixer
];
programs.mpv = {
enable = true;
defaultProfiles = ["gpu-hq"];
scripts = [pkgs.mpvScripts.mpris];
};
services = {
playerctld.enable = true;
};
}

View File

@@ -0,0 +1,12 @@
{
pkgs,
config,
...
}:
{
home.packages = with pkgs; [
# images
imv
];
}

View File

@@ -0,0 +1,13 @@
{
pkgs,
config,
...
}:
# media - control and enjoy audio/video
{
imports = [
./audio.nix
./image.nix
];
}

View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
# Install OBS Studio and any desired plugins
home.packages = with pkgs; [
obs-studio
obs-studio-plugins.obs-vkcapture # For better Wayland capture (if you're on Wayland)
obs-studio-plugins.move-transition # Useful for scene transitions
# Add other OBS plugins you might need here
];
# Optional: Configure environment variables or settings if needed
# This is less common for OBS Studio, as it's mostly GUI configured.
# Example (you might not need this):
environment.variables = {
QT_QPA_PLATFORM = "wayland"; # If you're on Wayland and encounter issues
};
# Optional: Set permissions if necessary (less common)
# systemd.user.services.obs-studio.serviceConfig.SupplementaryGroups = [ "video" ];
}

View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
# Install Spotify
home.packages = with pkgs; [
spotify
];
# Optional: You might need to set environment variables for Spotify,
# especially if you encounter issues with it finding libraries.
# This is less common now, but here's an example:
# environment.variables = {
# NIXOS_OZONE_WL = "1"; # If you're on Wayland and have issues
# };
}

View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
# Install Blender
home.packages = with pkgs; [
blender
];
# Optional: Install specific versions of Blender (e.g., LTS)
# home.packages = with pkgs; [
# blender-bin # Latest stable release
# blender-lts
# ];
# Optional: Install Blender plugins
# home.packages = with pkgs; [
# blender
# blender-addons.io-scene-gltf2 # Example GLTF exporter/importer
# # Add other Blender addons here
# ];
}

View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
# Install Obsidian
home.packages = with pkgs; [
obsidian
];
# Optional: You might want to configure Obsidian's data directory.
# By default, Obsidian stores its data in ~/Obsidian.
# You can change this using environment variables, but it's less common to manage this declaratively.
# Example (you might not need this):
# environment.variables = {
# OBSIDIAN_VAULT_PATH = "/path/to/your/vaults";
# };
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install OnlyOffice Desktop Editors
home.packages = with pkgs; [
onlyoffice-desktopeditors
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install Slic3r
home.packages = with pkgs; [
slic3r
];
}

View File

@@ -0,0 +1,36 @@
{ pkgs, ... }:
{
# Install Thunderbird
home.packages = with pkgs; [
thunderbird
];
# Configure Thunderbird using profiles.ini
programs.thunderbird.enable = true;
programs.thunderbird.profiles."default" = {
isDefault = true;
settings = {
mail.check_default_mail = false;
# Add other Thunderbird settings here if needed
};
accounts = [
{
name = "Phil Keier (Hotmail)";
server = "imap-mail.outlook.com";
user = "phil.keier@hotmail.com";
port = 993;
ssl = true;
type = "imap";
identity = {
name = "Phil Keier";
email = "phil.keier@hotmail.com";
smtpServer = "smtp-mail.outlook.com";
smtpPort = 587;
smtpSsl = true;
smtpUsername = "phil.keier@hotmail.com";
};
}
];
};
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install Element Desktop
home.packages = with pkgs; [
element-desktop
];
}

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
# Install Telegram Desktop
home.packages = with pkgs; [
telegram-desktop
telegram-cli
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install WebCord
home.packages = with pkgs; [
webcord
];
}

View File

@@ -0,0 +1,13 @@
{
pkgs,
config,
...
}: {
programs.chromium = {
enable = true;
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
extensions = [
# {id = "";} // extension id, query from chrome web store
];
};
}

View File

@@ -0,0 +1,11 @@
{
pkgs,
config,
username,
...
}: {
programs.firefox = {
enable = true;
profiles.${username} = {};
};
}