1
Fork 0

Move a bunch of things around

This commit is contained in:
Matei Adriel 2023-12-02 00:46:56 +01:00
parent 28d21046ef
commit bfc89aff7f
No known key found for this signature in database
39 changed files with 435 additions and 244 deletions

View file

@ -1,23 +0,0 @@
{ config, lib, ... }:
{
stylix.targets.alacritty.enable = true;
programs.alacritty = {
enable = true;
settings = {
window.opacity = lib.mkForce 0.5; # Conflicts with stylix
window.padding = {
x = 4;
y = 4;
};
env = {
TERM = "tmux-256color";
ALWAYS_TMUX = 1;
};
working_directory = "${config.home.homeDirectory}/Projects/";
};
};
}

View file

@ -1,4 +0,0 @@
# Notify on low battery percentages.
{
services.batsignal.enable = true;
}

View file

@ -1,3 +1,12 @@
{
imports = [
./wezterm # terminal
./dunst.nix # notifaction handler
];
# Notifies on low battery percentages
services.batsignal.enable = true;
# Use a base16 theme for gtk apps!
stylix.targets.gtk.enable = true;
}

View file

@ -0,0 +1,6 @@
{
# TODO: use base16 theme
services.dunst = {
enable = true;
};
}

View file

@ -1,3 +0,0 @@
{
services.keepassx.enable = true;
}

View file

@ -1,3 +1,4 @@
# Zathura is the pdf reader I am using.
{ config, ... }:
{
programs.zathura = {
@ -84,4 +85,6 @@
# }}}
'';
};
home.shellAliases.pdf = "zathura --fork";
}