Added: Bunch of Programs
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
{
|
||||
imports = [
|
||||
./browsers.nix
|
||||
./common.nix
|
||||
./git.nix
|
||||
./media.nix
|
||||
./xdg.nix
|
||||
./neovim.nix
|
||||
];
|
||||
}
|
9
home/programs/dev/default.nix
Normal file
9
home/programs/dev/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
imports = [
|
||||
./git.nix
|
||||
./neovim.nix
|
||||
./fstl.nix
|
||||
./openscad.nix
|
||||
./sqllite_browser.nix
|
||||
];
|
||||
}
|
8
home/programs/dev/fstl.nix
Normal file
8
home/programs/dev/fstl.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install fstl
|
||||
home.packages = with pkgs; [
|
||||
fstl
|
||||
];
|
||||
}
|
8
home/programs/dev/openscad.nix
Normal file
8
home/programs/dev/openscad.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install OpenSCAD
|
||||
home.packages = with pkgs; [
|
||||
openscad
|
||||
];
|
||||
}
|
8
home/programs/dev/sqllite_browser.nix
Normal file
8
home/programs/dev/sqllite_browser.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install sqlitebrowser (DB Browser for SQLite)
|
||||
home.packages = with pkgs; [
|
||||
sqlitebrowser
|
||||
];
|
||||
}
|
@@ -1,20 +0,0 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
# Launchers
|
||||
steam
|
||||
# itch
|
||||
lutris
|
||||
|
||||
# Games
|
||||
xonotic
|
||||
# armagetron
|
||||
freeciv
|
||||
mindustry
|
||||
openra
|
||||
];
|
||||
}
|
9
home/programs/games/itch.nix
Normal file
9
home/programs/games/itch.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
itch
|
||||
];
|
||||
}
|
9
home/programs/games/lutris.nix
Normal file
9
home/programs/games/lutris.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
lutris
|
||||
];
|
||||
}
|
13
home/programs/games/opensource.nix
Normal file
13
home/programs/games/opensource.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
xonotic
|
||||
# armagetron
|
||||
freeciv
|
||||
mindustry
|
||||
openra
|
||||
];
|
||||
}
|
9
home/programs/games/steam.nix
Normal file
9
home/programs/games/steam.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
steam
|
||||
];
|
||||
}
|
@@ -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;
|
||||
};
|
||||
}
|
24
home/programs/media/audio.nix
Normal file
24
home/programs/media/audio.nix
Normal 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;
|
||||
};
|
||||
}
|
12
home/programs/media/image.nix
Normal file
12
home/programs/media/image.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# images
|
||||
imv
|
||||
];
|
||||
|
||||
}
|
13
home/programs/media/media.nix
Normal file
13
home/programs/media/media.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
# media - control and enjoy audio/video
|
||||
{
|
||||
imports = [
|
||||
./audio.nix
|
||||
./image.nix
|
||||
];
|
||||
|
||||
}
|
21
home/programs/media/obs.nix
Normal file
21
home/programs/media/obs.nix
Normal 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" ];
|
||||
}
|
15
home/programs/media/spotify.nix
Normal file
15
home/programs/media/spotify.nix
Normal 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
|
||||
# };
|
||||
}
|
21
home/programs/productivity/blender.nix
Normal file
21
home/programs/productivity/blender.nix
Normal 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
|
||||
# ];
|
||||
}
|
16
home/programs/productivity/obsidian.nix
Normal file
16
home/programs/productivity/obsidian.nix
Normal 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";
|
||||
# };
|
||||
}
|
8
home/programs/productivity/onlyoffice.nix
Normal file
8
home/programs/productivity/onlyoffice.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install OnlyOffice Desktop Editors
|
||||
home.packages = with pkgs; [
|
||||
onlyoffice-desktopeditors
|
||||
];
|
||||
}
|
8
home/programs/productivity/slicer.nix
Normal file
8
home/programs/productivity/slicer.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install Slic3r
|
||||
home.packages = with pkgs; [
|
||||
slic3r
|
||||
];
|
||||
}
|
36
home/programs/productivity/thunderbird.nix
Normal file
36
home/programs/productivity/thunderbird.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
8
home/programs/social/element.nix
Normal file
8
home/programs/social/element.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install Element Desktop
|
||||
home.packages = with pkgs; [
|
||||
element-desktop
|
||||
];
|
||||
}
|
9
home/programs/social/telegram.nix
Normal file
9
home/programs/social/telegram.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install Telegram Desktop
|
||||
home.packages = with pkgs; [
|
||||
telegram-desktop
|
||||
telegram-cli
|
||||
];
|
||||
}
|
8
home/programs/social/webcord.nix
Normal file
8
home/programs/social/webcord.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install WebCord
|
||||
home.packages = with pkgs; [
|
||||
webcord
|
||||
];
|
||||
}
|
13
home/programs/web/chromium.nix
Normal file
13
home/programs/web/chromium.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs.chromium = {
|
||||
enable = true;
|
||||
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
|
||||
extensions = [
|
||||
# {id = "";} // extension id, query from chrome web store
|
||||
];
|
||||
};
|
||||
}
|
11
home/programs/web/firefox.nix
Normal file
11
home/programs/web/firefox.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
profiles.${username} = {};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user