Config fixes
This commit is contained in:
@@ -1,26 +1,29 @@
|
|||||||
{ 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";
|
||||||
|
file = {
|
||||||
"scripts" = {
|
"scripts" = {
|
||||||
source = config.lib.file.mkOutOfStoreSymlink ./scripts;
|
source = config.lib.file.mkOutOfStoreSymlink ./scripts;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
sessionPath = [
|
||||||
home.sessionPath = [
|
|
||||||
"$HOME/scripts"
|
"$HOME/scripts"
|
||||||
];
|
];
|
||||||
|
shellAliases = {
|
||||||
home.preferXdgDirectories = true;
|
gs = "git status";
|
||||||
|
"..." = "cd ../..";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
xdg = {
|
xdg = {
|
||||||
enable = true;
|
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;
|
||||||
|
Reference in New Issue
Block a user