updated goober config

This commit is contained in:
chloe 2024-12-08 10:11:34 +01:00
parent 6fcf4c62e2
commit 7455e9981f
7 changed files with 31 additions and 5 deletions

View file

@ -59,6 +59,10 @@
pkgs.vscode
pkgs.zathura
pkgs.tor-browser
pkgs.gammastep
pkgs.lazygit
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
@ -118,6 +122,7 @@
};
};
programs.zoxide.enable = true;
programs.zoxide.enableBashIntegration= true;
programs.zoxide.options = [
@ -126,6 +131,10 @@
services.mpris-proxy.enable = true;
programs.swaylock = {
enable = true;
};
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. These will be explicitly sourced when using a
# shell provided by Home Manager. If you don't want to manage your shell
@ -155,6 +164,13 @@
};
};
services.gammastep = {
enable = true;
provider = "manual";
latitude = 49.0;
longitude = 8.4;
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}