2022-09-18 19:42:30 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./alacritty.nix
|
|
|
|
./git.nix
|
|
|
|
./git.nix
|
2022-09-22 01:42:18 +00:00
|
|
|
./gpg.nix
|
2022-09-18 19:42:30 +00:00
|
|
|
./mako.nix
|
|
|
|
./rofi.nix
|
|
|
|
./sway/sway.nix
|
|
|
|
./tmux.nix
|
2022-09-25 18:01:06 +00:00
|
|
|
#./vim/vim.nix
|
|
|
|
./neovim.nix
|
2022-09-18 19:42:30 +00:00
|
|
|
./zsh.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
kitty
|
|
|
|
signal-desktop
|
|
|
|
nodejs # For vim's CoC plugin
|
|
|
|
pamixer # For sway binding to control audio
|
|
|
|
# TODO: Remove this? Need to add programs.light.enable in system config
|
|
|
|
#light # For sway binding to control backlight
|
|
|
|
#swaynagmode
|
|
|
|
python310
|
2022-11-27 16:08:02 +00:00
|
|
|
gammastep # Requires `services.geoclue2.enable` set in system config
|
2022-09-18 19:42:30 +00:00
|
|
|
super-slicer
|
|
|
|
|
|
|
|
firefox
|
|
|
|
|
|
|
|
kanshi
|
|
|
|
#pkgs.busybox
|
|
|
|
|
|
|
|
playerctl
|
|
|
|
];
|
|
|
|
|
|
|
|
services.gammastep = {
|
|
|
|
enable = true;
|
|
|
|
provider = "geoclue2";
|
|
|
|
#latitude = 34.0;
|
|
|
|
#longitude = -118.4;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|