diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 6de88d4..3643b30 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -101,6 +101,9 @@ binfmt = true; }; + # Enable light for image control + programs.light.enable = true; + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.crony = { isNormalUser = true; diff --git a/modules/cross-platform/home-manager/shell.nix b/modules/cross-platform/home-manager/shell.nix index 292ca3d..36b800b 100644 --- a/modules/cross-platform/home-manager/shell.nix +++ b/modules/cross-platform/home-manager/shell.nix @@ -113,5 +113,8 @@ # Install btop programs.btop.enable = true; + + # Install lazygit + programs.lazygit.enable = true; }; }