configurati

This commit is contained in:
KoenDR06 2024-04-08 15:26:45 +02:00
parent 7d28606248
commit 07e20bb877
4 changed files with 9 additions and 0 deletions

View file

@ -30,8 +30,10 @@
# Enable programs # Enable programs
home.packages = with pkgs; [ home.packages = with pkgs; [
acpid
bitwarden bitwarden
discord discord
fzf
jetbrains.clion jetbrains.clion
jetbrains.pycharm-professional jetbrains.pycharm-professional
jetbrains.idea-ultimate jetbrains.idea-ultimate
@ -43,6 +45,7 @@
inkscape inkscape
libreoffice libreoffice
mullvad-vpn mullvad-vpn
neofetch
parsec-bin parsec-bin
python3 python3
platformio-core platformio-core

View file

@ -118,6 +118,9 @@
"org/gnome/settings-daemon/plugins/media-keys" = { "org/gnome/settings-daemon/plugins/media-keys" = {
screensaver = ["<Super>l"]; screensaver = ["<Super>l"];
home = ["<Super>e"]; home = ["<Super>e"];
custom-keybindings = [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
];
}; };
"org/gnome/shell/keybindings" = { "org/gnome/shell/keybindings" = {

View file

@ -56,6 +56,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
services.tailscale.enable = true; services.tailscale.enable = true;
services.acpid.enable = true;
users.users = { users.users = {
horseman = { horseman = {

View file

@ -20,5 +20,7 @@
plugins = ["git"]; plugins = ["git"];
theme = "robbyrussell"; theme = "robbyrussell";
}; };
shellInit = "eval \"$(zoxide init zsh --cmd cd)\"";
}; };
} }