This commit is contained in:
TheWanderingCrow 2024-12-29 20:16:00 -05:00
parent 58dea90ea9
commit 663aeffed8
9 changed files with 92 additions and 37 deletions

View file

@ -1,8 +1,7 @@
{
programs.git = {
enable = true;
userName = "TheWanderingCrow";
userEmail = "contact@wanderingcrow.net";
};
programs.git = {
enable = true;
userName = "TheWanderingCrow";
userEmail = "contact@wanderingcrow.net";
};
}

View file

@ -1,17 +1,17 @@
{
programs.tmux = {
enable = true;
keyMode = "vi";
extraConfig = ''
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
programs.tmux = {
enable = true;
keyMode = "vi";
extraConfig = ''
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
'';
};
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
'';
};
}

View file

@ -223,7 +223,13 @@
in {
programs.waybar = {
enable = true;
settings = if osConfig.ricing.basic.enable then og_waybar.jsonc else {};
style = if osConfig.ricing.basic.enable then og_waybar.style else "";
settings =
if osConfig.ricing.basic.enable
then og_waybar.jsonc
else {};
style =
if osConfig.ricing.basic.enable
then og_waybar.style
else "";
};
}

View file

@ -1,9 +0,0 @@
{
lib,
config,
...
}: {
imports = [
./user.nix
];
}