various improvements to the "me" user home configuration
also added multiple TODO items
This commit is contained in:
parent
3bc320cc6a
commit
5a15c239cd
10 changed files with 70 additions and 8 deletions
2
NEW_TODO
2
NEW_TODO
|
|
@ -1,2 +0,0 @@
|
||||||
- [ ] True using `gitHashes` argument instead of patching?
|
|
||||||
|
|
||||||
5
PROBLEMLOG
Normal file
5
PROBLEMLOG
Normal 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
15
TODO
|
|
@ -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)
|
Create a command palette accessible with MOD+P (MOD => Windows Key)
|
||||||
(ie make fullscreen, send to monitor, etc)
|
(ie make fullscreen, send to monitor, etc)
|
||||||
|
|
||||||
Make each monitor's window styling slightly different (just for fun)
|
|
||||||
|
|
||||||
Bind 5 workspaces per connected monitor.
|
Boring stuff (ie work and uni should go on a separate user account)
|
||||||
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!)
|
|
||||||
|
INSPIRATION:
|
||||||
|
1. https://github.com/sabrehagen/desktop-environment
|
||||||
|
|
|
||||||
26
TODO.LONG-TERM
Executable file
26
TODO.LONG-TERM
Executable 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
4
TODO.SPECIFIC
Normal 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
1
banner
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Welcome weary traveller, to my shop...
|
||||||
|
|
@ -50,6 +50,12 @@
|
||||||
username = "me";
|
username = "me";
|
||||||
homeDirectory = "/home/me";
|
homeDirectory = "/home/me";
|
||||||
|
|
||||||
|
shellAliases = {
|
||||||
|
rip = "rg"; # ripgrep
|
||||||
|
brip = "batgrep"; # bat + ripgrep
|
||||||
|
man = "batman"; # bat + man
|
||||||
|
};
|
||||||
|
|
||||||
pointerCursor = {
|
pointerCursor = {
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
# x11.enable = true # dont enable since im on hyprland
|
# x11.enable = true # dont enable since im on hyprland
|
||||||
|
|
|
||||||
|
|
@ -12,4 +12,13 @@
|
||||||
theme = "Dracula";
|
theme = "Dracula";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# other commands that make normal utils prettier
|
||||||
|
home.packages = with pkgs.bat-extras; [
|
||||||
|
batdiff
|
||||||
|
batgrep
|
||||||
|
batman
|
||||||
|
batwatch
|
||||||
|
prettybat
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,12 @@
|
||||||
}: {
|
}: {
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
extraConfig = {
|
||||||
|
color.ui = true;
|
||||||
|
core.editor = "hx";
|
||||||
|
github.user = "emileclarkb";
|
||||||
|
};
|
||||||
|
|
||||||
userName = "Emile Clark-Boman";
|
userName = "Emile Clark-Boman";
|
||||||
userEmail = "eclarkboman@gmail.com";
|
userEmail = "eclarkboman@gmail.com";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
home = {
|
home = {
|
||||||
packages = [
|
packages = [
|
||||||
pkgs.ghostty
|
pkgs.ghostty
|
||||||
#(pkgs.writeShellScriptBin "xterm" ''${pkgs.ghostty}/bin/ghostty "$@"'')
|
|
||||||
];
|
];
|
||||||
|
|
||||||
sessionVariables.TERMINAL = "ghostty";
|
sessionVariables.TERMINAL = "ghostty";
|
||||||
|
|
@ -26,6 +25,9 @@
|
||||||
gtk-single-instance = false;
|
gtk-single-instance = false;
|
||||||
adw-toolbar-style = "flat";
|
adw-toolbar-style = "flat";
|
||||||
|
|
||||||
|
# disable close confirmations
|
||||||
|
confirm-close-surface = false;
|
||||||
|
|
||||||
keybind = [
|
keybind = [
|
||||||
"ctrl+shift+plus=increase_font_size:1"
|
"ctrl+shift+plus=increase_font_size:1"
|
||||||
"ctrl+shift+minus=decrease_font_size:1"
|
"ctrl+shift+minus=decrease_font_size:1"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue