Config fixes

This commit is contained in:
2025-06-03 04:09:58 -04:00
parent 81ae432c3d
commit 380bed59a3

View File

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