global modif

This commit is contained in:
grimhilt 2023-04-08 16:59:40 +02:00
parent 2b8e14423c
commit dc40d5200c
5 changed files with 25 additions and 7 deletions

View File

@ -3,7 +3,7 @@ sxhkd &
polybar bar -q & polybar bar -q &
bspc monitor eDP-1 -d 1 2 3 4 5 6 7 8 bspc monitor eDP-1 -d 1 2 3 4 5 6 7 8
bspc monitor HDMI-1 -d 9 10 bspc monitor HDMI-1 -d 9 10 11
bspc rule -a Element desktop=^3 bspc rule -a Element desktop=^3
bspc rule -a Librewolf desktop=^2 bspc rule -a Librewolf desktop=^2

View File

@ -5,6 +5,12 @@
nix-direnv nix-direnv
]; ];
home = {
stateVersion = "22.05";
username = "grimhilt";
homeDirectory = "/home/grimhilt";
};
programs = { programs = {
zsh = { zsh = {
enable = true; enable = true;
@ -12,6 +18,8 @@
conf = "vim /etc/nixos/configuration.nix"; conf = "vim /etc/nixos/configuration.nix";
touchSens = "xinput --set-prop 14 'libinput Accel Speed'"; touchSens = "xinput --set-prop 14 'libinput Accel Speed'";
cShell = "nix-shell ~/.config/nixshell/c.nix"; cShell = "nix-shell ~/.config/nixshell/c.nix";
clrShell = "cat /dev/null > ~/.bash_history && history -c";
nextsync = "/home/grimhilt/Documents/prog/c/nextsync/nextsync";
}; };
enableCompletion = true; enableCompletion = true;
plugins = [ plugins = [

View File

@ -43,7 +43,7 @@ screenchange-reload = true
[module/bspwm-desktops] [module/bspwm-desktops]
type = internal/bspwm type = internal/bspwm
pin-workspaces = true
format = <label-state> format = <label-state>
label-focused = %name% label-focused = %name%

View File

@ -110,8 +110,8 @@ super + shift + {h, j, k, l}
# Focus/Send to the given desktop # Focus/Send to the given desktop
#super + {_,shift + }{ampersand,eacute,quotedbl,apostrophe,parenleft,minus,egrave,underscore,ccedilla,agrave} #super + {_,shift + }{ampersand,eacute,quotedbl,apostrophe,parenleft,minus,egrave,underscore,ccedilla,agrave}
super + {_,shift + }{ampersand,eacute,quotedbl,apostrophe,parenleft,a,z,e,r,t} super + {_,shift + }{ampersand,eacute,quotedbl,apostrophe,parenleft,a,z,e,r,t,y}
bspc {desktop -f,node -d} '^{1-9,10}' bspc {desktop -f,node -d} '^{1-9,10,11}'
# Focus the node for the given path jump # Focus the node for the given path jump
super + {p,b,comma,period} super + {p,b,comma,period}

View File

@ -7,7 +7,7 @@ let
unstable = import <unstable> {}; unstable = import <unstable> {};
in { in {
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
imports = [ # Include the results of the hardware scan. imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./ledger.nix ./ledger.nix
@ -73,6 +73,11 @@ programs.nix-ld.enable = true;
}; };
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
services.mysql.enable = true;
services.mysql.package = pkgs.mariadb;
services.mongodb.enable = true;
# Enable CUPS to print documents. # Enable CUPS to print documents.
# services.printing.enable = true; # services.printing.enable = true;
@ -123,6 +128,9 @@ programs.nix-ld.enable = true;
chromium chromium
# utils # utils
wireguard-tools
vlc
tldr
dolphin dolphin
git git
ranger ranger
@ -136,6 +144,7 @@ programs.nix-ld.enable = true;
# apps # apps
element-desktop element-desktop
zulip
nextcloud-client nextcloud-client
discord discord
onlyoffice-bin onlyoffice-bin
@ -149,8 +158,9 @@ programs.nix-ld.enable = true;
# devs # devs
python311 python311
geany docker-compose
nasm filezilla
insomnia
]; ];
fonts.fonts = [ pkgs.font-awesome ]; fonts.fonts = [ pkgs.font-awesome ];