Compare commits

..

2 commits

Author SHA1 Message Date
ba3f4f6f7b installed gnumake and man pages for hosts 2025-05-14 10:48:27 +10:00
5a15c239cd various improvements to the "me" user home configuration
also added multiple TODO items
2025-05-14 10:45:51 +10:00
12 changed files with 83 additions and 11 deletions

View file

@ -1,2 +0,0 @@
- [ ] True using `gitHashes` argument instead of patching?

5
PROBLEMLOG Normal file
View file

@ -0,0 +1,5 @@
180GB of disk space were used by my system which seemed absurd. Running the NixOS
garbage collector only removed 7GB. The rest was found via:
`du -hs ./.local/share/Games/drive_c/Program\ Files\ \(x86\)/Steam/dumps/reports/*`
tldr: there were 2714 30MB crash report files generated every minute of May 2nd 2025 (10 days ago)
SOLUTION: delete them all and hope it doesn't happen again

15
TODO
View file

@ -1,9 +1,14 @@
SOON: fix having to keep specifying new sha256 for home-manager (where I fetchTarball for it)
THEN: make my nixdots more modular, there are a LOT of packages installed only to my laptop when they should be shared!
Create a command palette accessible with MOD+P (MOD => Windows Key)
(ie make fullscreen, send to monitor, etc)
Make each monitor's window styling slightly different (just for fun)
Bind 5 workspaces per connected monitor.
Then use the command palette (discussed prior) to send to
a different workspace (ie because I currently use MOD+SHIFT+n
but if n>=10 then it doesnt work! hence we need a command palette!)
Boring stuff (ie work and uni should go on a separate user account)
INSPIRATION:
1. https://github.com/sabrehagen/desktop-environment

26
TODO.LONG-TERM Executable file
View file

@ -0,0 +1,26 @@
Add a MAC Changer module like
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles/blob/main/nixos/mac-randomize.nix
Really good security oriented NixOS stuff can be found on that repo above (XNM1/linux-nixos-hyprland-config-dotfiles)
Have multiple colour schemes in my system, one that's dark (good for when there's no external lighting),
and another that's lighter (but not white) for when my windows are open).
### Incredible Rofi Theme Collection
https://github.com/adi1090x/rofi
https://jade.fyi/blog/flakes-arent-real/
Make each monitor's window styling slightly different (just for fun)
Bind 5 workspaces per connected monitor.
Then use the command palette (discussed prior) to send to
a different workspace (ie because I currently use MOD+SHIFT+n
but if n>=10 then it doesnt work! hence we need a command palette!)

4
TODO.SPECIFIC Normal file
View file

@ -0,0 +1,4 @@
- [ ] Try using `gitHashes` argument instead of patching? (on chameleonultragui package)
- [ ] Don't alias ripgrep to rip, download the rip util too (its cool)
https://github.com/nivekuil/rip

1
banner Normal file
View file

@ -0,0 +1 @@
Welcome weary traveller, to my shop...

View file

@ -50,6 +50,12 @@
username = "me";
homeDirectory = "/home/me";
shellAliases = {
rip = "rg"; # ripgrep
brip = "batgrep"; # bat + ripgrep
man = "batman"; # bat + man
};
pointerCursor = {
gtk.enable = true;
# x11.enable = true # dont enable since im on hyprland

View file

@ -12,4 +12,13 @@
theme = "Dracula";
};
};
# other commands that make normal utils prettier
home.packages = with pkgs.bat-extras; [
batdiff
batgrep
batman
batwatch
prettybat
];
}

View file

@ -5,6 +5,12 @@
}: {
programs.git = {
enable = true;
extraConfig = {
color.ui = true;
core.editor = "hx";
github.user = "emileclarkb";
};
userName = "Emile Clark-Boman";
userEmail = "eclarkboman@gmail.com";
};

View file

@ -2,7 +2,6 @@
home = {
packages = [
pkgs.ghostty
#(pkgs.writeShellScriptBin "xterm" ''${pkgs.ghostty}/bin/ghostty "$@"'')
];
sessionVariables.TERMINAL = "ghostty";
@ -26,6 +25,9 @@
gtk-single-instance = false;
adw-toolbar-style = "flat";
# disable close confirmations
confirm-close-surface = false;
keybind = [
"ctrl+shift+plus=increase_font_size:1"
"ctrl+shift+minus=decrease_font_size:1"

View file

@ -5,7 +5,7 @@
}: let
home-manager = builtins.fetchTarball {
url = "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
sha256 = "1qsvg11b5d05z2gvxq2pp6xfg3gpcd363id0h52sicikx3vai93s";
sha256 = "0gjfa3bv0m0kymxqla9iih11gjb6czyj942v34pyc7xy4qsx898k";
};
in {
imports = [
@ -232,9 +232,10 @@ in {
zoxide
doggo
tldr
btop
# btop
eza
ripgrep
viddy # modern `watch` command
# TODO: once upgraded past Nix-24.07 this line won't be necessary (I think)
# helix will support nixd by default
@ -246,15 +247,19 @@ in {
git-filter-repo
brightnessctl
acpi
upower
# upower
vim
powertop
gcc
gnumake
# Unix Commands
wget
tree
unzip
# Man Pages
man-pages
man-pages-posix
];
# Enable the use of certain programs

View file

@ -199,6 +199,7 @@ in {
zoxide
doggo
tldr
viddy
#btop
tesseract # for my work with Agribit
@ -214,11 +215,15 @@ in {
vim
nix-prefetch-git
gcc
gnumake
# Unix Commands
wget
tree
unzip
# Man Pages
man-pages
man-pages-posix
# Cryptography
openssl