Systemd-ify Waybar, move aliases to individualized places, more Sway and Jovian changes

This commit is contained in:
Bun 2025-05-10 11:27:52 -04:00
parent 949cb85b2b
commit d257cd9bf5
14 changed files with 212 additions and 143 deletions

View file

@ -1,7 +1,9 @@
{ ... }:
{ config, ... }:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".local/share/direnv" ];
}

View file

@ -2,7 +2,10 @@
{
programs.fastfetch.enable = true;
home.packages = with pkgs; [ (writeScriptBin "smallfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
home = {
shellAliases.ff = "clear && fastfetch";
packages = with pkgs; [ (writeScriptBin "smallfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
};
xdg.configFile."fastfetch".source = ./configs;
}

View file

@ -4,4 +4,9 @@
enable = true;
flake = "${config.home.homeDirectory}/Projects/nixos-config";
};
home.shellAliases = {
nhs = "nh os switch";
nht = "nh os test";
};
}