Moved more to home

This commit is contained in:
2026-01-23 12:06:59 -07:00
parent df15192e95
commit 5c081ed79b
8 changed files with 20 additions and 45 deletions

View File

@@ -1,6 +1,21 @@
{ pkgs, ... }:
{
home.shellAliases = {
# Nix Commands
"nix:rebuild" = "sudo nixos-rebuild switch";
"nix:update" = "sudo nixos-rebuild switch --upgrade";
"nix:purge" = "sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot";
"nix:edit" = "$EDITOR /etc/nixos";
"nix:push" = "cd /etc/nixos && git add -A && git commit -m \"$(date -u +%s)\" && git push";
"nix:pull" = "cd /etc/nixos && git pull";
"nix:hw" = "sudo nixos-generate-config --show-hardware-config > /etc/nixos/hardware-configuration.nix";
# Utilities
"fixaudio" = "systemctl --user restart pipewire pipewire-pulse wireplumber";
"nf" = "neofetch";
};
programs.starship = {
enable = true;
enableBashIntegration = true;

View File

@@ -10,11 +10,8 @@
gnumake
openssh
nodePackages."pnpm"
openssl
killall
ffmpeg
vscodium
usbutils
qmk
neofetch
deepfilternet
@@ -36,4 +33,6 @@
# GNOME Extensions
gnomeExtensions.appindicator
];
programs.obs-studio.enable = true;
}

View File

@@ -1,6 +1,8 @@
{ config, ... }:
{
home.file."Assets".source = ../../assets;
home.sessionVariables = {
BROWSER = "librewolf";
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";