From e510b26e2395087c26dc6c0acccddde19e8e8209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20K=C3=A4nner?= Date: Sat, 9 Mar 2024 11:07:51 +0100 Subject: [PATCH] 120 current 1970-01-01 01:00:00 24.05.20240303.b8697e5 6.6.19 * --- hosts/MaxNixosLaptop/home.nix | 4 +++- modules/home-manager/lazygit.nix | 12 ++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 modules/home-manager/lazygit.nix diff --git a/hosts/MaxNixosLaptop/home.nix b/hosts/MaxNixosLaptop/home.nix index e036f72..c775991 100644 --- a/hosts/MaxNixosLaptop/home.nix +++ b/hosts/MaxNixosLaptop/home.nix @@ -14,6 +14,7 @@ # often used terminal programs ../../modules/home-manager/btop.nix ../../modules/home-manager/bat.nix + ../../modules/home-manager/lazygit.nix # use mpd for music ../../modules/home-manager/mpd.nix ]; @@ -37,7 +38,6 @@ # The home.packages option allows you to install Nix packages into your # environment. home.packages = with pkgs; [ - lazygit unzip rustup nextcloud-client @@ -65,6 +65,8 @@ EDITOR = "nvim"; }; + xdg.enable = true; + services.nextcloud-client.enable = true; # Let Home Manager install and manage itself. diff --git a/modules/home-manager/lazygit.nix b/modules/home-manager/lazygit.nix new file mode 100644 index 0000000..24290ab --- /dev/null +++ b/modules/home-manager/lazygit.nix @@ -0,0 +1,12 @@ +{...}: { + programs.lazygit = { + enable = true; + settings = { + gui = { + shwoRandomTip = false; + nerdFontsVersion = "3"; + border = "double"; + }; + }; + }; +}