Compare commits
2 commits
3bc320cc6a
...
ba3f4f6f7b
| Author | SHA1 | Date | |
|---|---|---|---|
| ba3f4f6f7b | |||
| 5a15c239cd |
12 changed files with 83 additions and 11 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"
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
}: let
|
}: let
|
||||||
home-manager = builtins.fetchTarball {
|
home-manager = builtins.fetchTarball {
|
||||||
url = "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
|
url = "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
|
||||||
sha256 = "1qsvg11b5d05z2gvxq2pp6xfg3gpcd363id0h52sicikx3vai93s";
|
sha256 = "0gjfa3bv0m0kymxqla9iih11gjb6czyj942v34pyc7xy4qsx898k";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -232,9 +232,10 @@ in {
|
||||||
zoxide
|
zoxide
|
||||||
doggo
|
doggo
|
||||||
tldr
|
tldr
|
||||||
btop
|
# btop
|
||||||
eza
|
eza
|
||||||
ripgrep
|
ripgrep
|
||||||
|
viddy # modern `watch` command
|
||||||
|
|
||||||
# TODO: once upgraded past Nix-24.07 this line won't be necessary (I think)
|
# TODO: once upgraded past Nix-24.07 this line won't be necessary (I think)
|
||||||
# helix will support nixd by default
|
# helix will support nixd by default
|
||||||
|
|
@ -246,15 +247,19 @@ in {
|
||||||
git-filter-repo
|
git-filter-repo
|
||||||
brightnessctl
|
brightnessctl
|
||||||
acpi
|
acpi
|
||||||
upower
|
# upower
|
||||||
vim
|
vim
|
||||||
powertop
|
powertop
|
||||||
gcc
|
gcc
|
||||||
|
gnumake
|
||||||
|
|
||||||
# Unix Commands
|
# Unix Commands
|
||||||
wget
|
wget
|
||||||
tree
|
tree
|
||||||
unzip
|
unzip
|
||||||
|
# Man Pages
|
||||||
|
man-pages
|
||||||
|
man-pages-posix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable the use of certain programs
|
# Enable the use of certain programs
|
||||||
|
|
|
||||||
|
|
@ -199,6 +199,7 @@ in {
|
||||||
zoxide
|
zoxide
|
||||||
doggo
|
doggo
|
||||||
tldr
|
tldr
|
||||||
|
viddy
|
||||||
#btop
|
#btop
|
||||||
|
|
||||||
tesseract # for my work with Agribit
|
tesseract # for my work with Agribit
|
||||||
|
|
@ -214,11 +215,15 @@ in {
|
||||||
vim
|
vim
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
gcc
|
gcc
|
||||||
|
gnumake
|
||||||
|
|
||||||
# Unix Commands
|
# Unix Commands
|
||||||
wget
|
wget
|
||||||
tree
|
tree
|
||||||
unzip
|
unzip
|
||||||
|
# Man Pages
|
||||||
|
man-pages
|
||||||
|
man-pages-posix
|
||||||
|
|
||||||
# Cryptography
|
# Cryptography
|
||||||
openssl
|
openssl
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue