Config fixes
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user