This commit is contained in:
meml0rz
2024-11-15 00:02:40 +01:00
parent ef1cf270f5
commit ae82dd64b0
5 changed files with 18 additions and 8 deletions

View File

@ -112,6 +112,7 @@
grim
slurp
feh
polybar
# cli
neofetch

View File

@ -4,7 +4,7 @@
alacritty = {
enable = true;
settings = {
color = {
colors = {
primary = {
background = "#282828";
foreground = "#ebdbb2";
@ -30,13 +30,10 @@
white = "#ebdbb2";
};
};
window = {
decorations = "Full";
};
font = {
size = "16";
size = 20;
normal = {
family = "Dina";
family = "FantasqueSansMNerdFont";
};
};
};

View File

@ -3,6 +3,7 @@
imports = [
./bspwm.nix
./alacritty.nix
./polybar.nix
];
#home.file = {

View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services = {
polybar = {
enable = true;
};
};
}

View File

@ -61,12 +61,14 @@
bind - split-window -v
unbind '"'
unbind %
bind t new-window
bind -n M-q previous-window
bind -n M-e next-window
bind r source-file ~/.tmux.conf
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
set -g status-position top
'';
};