Updated username `coleman` & apps

This commit is contained in:
Zonsopkomst 2023-09-29 10:26:38 -05:00
parent 2cd0dfa95b
commit 586d2a0659
6 changed files with 64 additions and 3 deletions

5
.gitignore vendored
View File

@ -5,3 +5,8 @@
/common/.terminal.nix.~undo-tree~
/hosts/remote/tii/.home.nix.~undo-tree~
/users/zonsopkomst/.home-manager.nix.~undo-tree~
/users/admin/.syncthing.nix.~undo-tree~
..gitignore.~undo-tree~
.gitignore
users/coleman/.syncthing.nix.~undo-tree~
users/coleman/.home-manager.nix.~undo-tree~

View File

@ -277,7 +277,7 @@
./common/networking.nix
./common/terminal.nix
./common/unfree.nix
#./common/waydroid.nix
./common/waydroid.nix
./common/x11.nix
# Host Specific
@ -345,7 +345,7 @@
# User Specific
./users/admin/home-manager.nix
#./users/admin/hd.nix
#./users/admin/syncthing.nix
./users/admin/syncthing.nix
home-manager.nixosModules.home-manager
{

View File

@ -13,7 +13,6 @@
hplip # HP Print Drivers
i2c-tools # Network Utilities
inetutils # Network Utilities
libsForQt5.kolourpaint # Painting Application
ntfs3g # FUSE Client
p7zip # File Archiver
papirus-icon-theme # Icons

View File

@ -10,6 +10,7 @@
easytag # Music Tag Editor
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
gnome-frog # Text extraction tool (OCR)
gpodder # Podcast Manager
keepassxc # GUI Password Manager with Cryptography
kitty # Terminal Emulator

View File

@ -0,0 +1,46 @@
{ config, pkgs, ... }:
{
home-manager.users.coleman = { pkgs, ... }: {
home.packages = with pkgs; [
bleachbit # PC Cleaner
brave # Browser
calibre # eBook Library
crow-translate # Language Translator
dino # XMPP Client
easytag # Music Tag Editor
freetube # YouTube Front-End
gImageReader # Tesseract-OCR Front-End
gnome-frog # Text extraction tool (OCR)
gpodder # Podcast Manager
keepassxc # GUI Password Manager with Cryptography
kitty # Terminal Emulator
librewolf # Firefox Web Browser Fork
libsForQt5.kolourpaint # Painting Application
mpv # Media Player
mumble # Low-Latency, High Quality Voice Chat
nomachine-client # NoMachine remote desktop client (nxplayer)
onlyoffice-bin # Office Suite
p7zip # File Archiver
pdfarranger # PDF Arranger
retroarchFull # Multi-Platform Emulator
rustdesk # Remote Desktop Software
smplayer # Media Player
solaar # Logitech Unifying Receiver
speedcrunch # Calculator
strawberry # Media Player
rustdesk # Remote Desktop Software
vscodium # Code Editor
xiphos # Bible Study Tool
xournalpp # PDF Annotation
];
imports = [
../../config/config.nix
../../common/git.nix
../../common/vscodium.nix
];
home.stateVersion = "23.05";
};
}

View File

@ -0,0 +1,10 @@
{
services = {
syncthing = {
enable = true;
user = "coleman";
dataDir = "/home/coleman/Syncthing"; # Default folder for new synced folders
configDir = "/home/coleman/Documents/.config/syncthing"; # Folder for Syncthing's settings and keys
};
};
}