Compare commits

..

4 Commits

Author SHA1 Message Date
Zynh Ludwig f85c28c4ce fish rebuild script?
good enough
2024-06-26 02:35:46 -07:00
Zynh Ludwig 68a191cacd feh in home packages (for now) 2024-06-26 02:35:11 -07:00
Zynh Ludwig 186964c1a7 nom 2024-06-26 02:35:11 -07:00
Zynh Ludwig f2ac717244 picom 2024-06-26 02:11:41 -07:00
3 changed files with 14 additions and 2 deletions

View File

@ -108,7 +108,8 @@
fzf fzf
tree tree
firefox nix-output-monitor
brave brave
gparted gparted
arandr arandr

View File

@ -16,10 +16,16 @@
services.dunst.enable = true; services.dunst.enable = true;
services.unclutter.enable = true; services.unclutter.enable = true;
home.packages = [ home.packages = with pkgs; [
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
(writeShellScriptBin "rebuild" ''
sudo nixos-rebuild switch --log-format internal-json -v |& nom --json
'')
feh
]; ];
home.file = { }; home.file = { };

View File

@ -18,6 +18,11 @@ in
}); });
}; };
services.picom = {
enable = true;
fade = false;
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
dmenu dmenu
]; ];