Move a bunch of things around
This commit is contained in:
parent
28d21046ef
commit
bfc89aff7f
39 changed files with 435 additions and 244 deletions
home/features/desktop
|
@ -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/";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
# Notify on low battery percentages.
|
||||
{
|
||||
services.batsignal.enable = true;
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
|
|
6
home/features/desktop/dunst.nix
Normal file
6
home/features/desktop/dunst.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
# TODO: use base16 theme
|
||||
services.dunst = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
services.keepassx.enable = true;
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
# Zathura is the pdf reader I am using.
|
||||
{ config, ... }:
|
||||
{
|
||||
programs.zathura = {
|
||||
|
@ -84,4 +85,6 @@
|
|||
# }}}
|
||||
'';
|
||||
};
|
||||
|
||||
home.shellAliases.pdf = "zathura --fork";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue