120 current 1970-01-01 01:00:00 24.05.20240303.b8697e5 6.6.19 *
This commit is contained in:
parent
37a67dfd35
commit
e510b26e23
@ -14,6 +14,7 @@
|
|||||||
# often used terminal programs
|
# often used terminal programs
|
||||||
../../modules/home-manager/btop.nix
|
../../modules/home-manager/btop.nix
|
||||||
../../modules/home-manager/bat.nix
|
../../modules/home-manager/bat.nix
|
||||||
|
../../modules/home-manager/lazygit.nix
|
||||||
# use mpd for music
|
# use mpd for music
|
||||||
../../modules/home-manager/mpd.nix
|
../../modules/home-manager/mpd.nix
|
||||||
];
|
];
|
||||||
@ -37,7 +38,6 @@
|
|||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
lazygit
|
|
||||||
unzip
|
unzip
|
||||||
rustup
|
rustup
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
@ -65,6 +65,8 @@
|
|||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xdg.enable = true;
|
||||||
|
|
||||||
services.nextcloud-client.enable = true;
|
services.nextcloud-client.enable = true;
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
|
12
modules/home-manager/lazygit.nix
Normal file
12
modules/home-manager/lazygit.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{...}: {
|
||||||
|
programs.lazygit = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
gui = {
|
||||||
|
shwoRandomTip = false;
|
||||||
|
nerdFontsVersion = "3";
|
||||||
|
border = "double";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user