From 07e20bb87725b30c5d532ed2152449cce60fd220 Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Mon, 8 Apr 2024 15:26:45 +0200 Subject: [PATCH] configurati --- home-manager/apps.nix | 3 +++ home-manager/gnome.nix | 3 +++ machines/luna/configuration.nix | 1 + pkgs/zsh.nix | 2 ++ 4 files changed, 9 insertions(+) diff --git a/home-manager/apps.nix b/home-manager/apps.nix index 041c7fe..e3f17ca 100644 --- a/home-manager/apps.nix +++ b/home-manager/apps.nix @@ -30,8 +30,10 @@ # Enable programs home.packages = with pkgs; [ + acpid bitwarden discord + fzf jetbrains.clion jetbrains.pycharm-professional jetbrains.idea-ultimate @@ -43,6 +45,7 @@ inkscape libreoffice mullvad-vpn + neofetch parsec-bin python3 platformio-core diff --git a/home-manager/gnome.nix b/home-manager/gnome.nix index 5ef5d65..6e3ca36 100644 --- a/home-manager/gnome.nix +++ b/home-manager/gnome.nix @@ -118,6 +118,9 @@ "org/gnome/settings-daemon/plugins/media-keys" = { screensaver = ["l"]; home = ["e"]; + custom-keybindings = [ + "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/" + ]; }; "org/gnome/shell/keybindings" = { diff --git a/machines/luna/configuration.nix b/machines/luna/configuration.nix index e9b5086..8c089b4 100644 --- a/machines/luna/configuration.nix +++ b/machines/luna/configuration.nix @@ -56,6 +56,7 @@ boot.loader.systemd-boot.enable = true; services.tailscale.enable = true; + services.acpid.enable = true; users.users = { horseman = { diff --git a/pkgs/zsh.nix b/pkgs/zsh.nix index c587b24..83f27d6 100644 --- a/pkgs/zsh.nix +++ b/pkgs/zsh.nix @@ -20,5 +20,7 @@ plugins = ["git"]; theme = "robbyrussell"; }; + + shellInit = "eval \"$(zoxide init zsh --cmd cd)\""; }; }