diff --git a/home/home.nix b/home/home.nix index 8c69ed7..9ca6263 100644 --- a/home/home.nix +++ b/home/home.nix @@ -1,27 +1,30 @@ -{ config, pkgs, nur, ... }: +{ config, pkgs, ... }: { imports = [ ./plasma.nix ]; - home.username = "chase"; - home.homeDirectory = "/home/chase"; - home.stateVersion = "24.11"; - - home.file = { - "scripts" = { - source = config.lib.file.mkOutOfStoreSymlink ./scripts; - recursive = true; + home = { + username = "chase"; + homeDirectory = "/home/chase"; + preferXdgDirectories = true; + stateVersion = "24.11"; + file = { + "scripts" = { + source = config.lib.file.mkOutOfStoreSymlink ./scripts; + recursive = true; + }; + }; + sessionPath = [ + "$HOME/scripts" + ]; + shellAliases = { + gs = "git status"; + "..." = "cd ../.."; }; }; - home.sessionPath = [ - "$HOME/scripts" - ]; - - home.preferXdgDirectories = true; - xdg = { enable = true; userDirs.enable = true; @@ -50,7 +53,6 @@ }; }; }; - # theme = "catppuccin_mocha"; }; programs.bash = { @@ -199,7 +201,6 @@ enableBashIntegration = true; installVimSyntax = true; settings = { - # theme = "catppuccin-mocha"; font-family = "BlexMono Nerd Font"; font-size = 11; }; @@ -300,7 +301,8 @@ client = { enable = true; arguments = [ - "-w" + "-c" + "-a" ]; }; defaultEditor = true;