Compare commits

..

No commits in common. "230ccd8e3b682012f5e2e3a011ede5aa6278ac75" and "cbeda61797384a74a97e48e2b9688a8b05b64d76" have entirely different histories.

246 changed files with 94 additions and 318 deletions

View File

@ -6,7 +6,7 @@
./hyprlock.nix ./hyprlock.nix
./hyprpaper.nix ./hyprpaper.nix
./waybar # Status Bar ./waybar # Status Bar
./rofi # App Launcher ../rofi # App Launcher
]; ];
} }

View File

@ -0,0 +1,23 @@
{
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;
};
}

10
home/programs/default.nix Normal file
View File

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

View File

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

View File

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

View File

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

View File

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

20
home/programs/games.nix Normal file
View File

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

View File

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

View File

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

View File

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

View File

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

35
home/programs/media.nix Normal file
View File

@ -0,0 +1,35 @@
{
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

@ -1,24 +0,0 @@
{
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

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

View File

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

View File

@ -1,21 +0,0 @@
{ 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

@ -1,15 +0,0 @@
{ 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

@ -1,21 +0,0 @@
{ 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

@ -1,16 +0,0 @@
{ 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

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

View File

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

View File

@ -1,36 +0,0 @@
{ 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

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

View File

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

View File

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

View File

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

View File

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

View File

Before

Width:  |  Height:  |  Size: 266 KiB

After

Width:  |  Height:  |  Size: 266 KiB

View File

Before

Width:  |  Height:  |  Size: 197 KiB

After

Width:  |  Height:  |  Size: 197 KiB

View File

Before

Width:  |  Height:  |  Size: 223 KiB

After

Width:  |  Height:  |  Size: 223 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

Before

Width:  |  Height:  |  Size: 441 KiB

After

Width:  |  Height:  |  Size: 441 KiB

View File

Before

Width:  |  Height:  |  Size: 648 KiB

After

Width:  |  Height:  |  Size: 648 KiB

View File

Before

Width:  |  Height:  |  Size: 339 KiB

After

Width:  |  Height:  |  Size: 339 KiB

View File

Before

Width:  |  Height:  |  Size: 125 KiB

After

Width:  |  Height:  |  Size: 125 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

Before

Width:  |  Height:  |  Size: 666 KiB

After

Width:  |  Height:  |  Size: 666 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 2.0 MiB

After

Width:  |  Height:  |  Size: 2.0 MiB

View File

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Some files were not shown because too many files have changed in this diff Show More