refactor
This commit is contained in:
parent
1206380efd
commit
7203fc1ed9
51 changed files with 175 additions and 108 deletions
|
@ -5,19 +5,19 @@
|
|||
}: {
|
||||
imports = [
|
||||
./discord
|
||||
./dunst
|
||||
./email
|
||||
./irc
|
||||
./mpd
|
||||
./picom
|
||||
./rofi
|
||||
./wezterm
|
||||
|
||||
./email.nix
|
||||
./irc.nix
|
||||
./mpd.nix
|
||||
./picom.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
feh
|
||||
xmobar
|
||||
xmonad
|
||||
xmobar # custom build using xmobar-config
|
||||
xmonad # custom build using xmonad-config
|
||||
];
|
||||
|
||||
home.file = {
|
||||
|
|
31
home-manager/sajenim/features/desktop/dunst/default.nix
Normal file
31
home-manager/sajenim/features/desktop/dunst/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{...}: {
|
||||
services.dunst = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global = {
|
||||
width = 300;
|
||||
height = 300;
|
||||
origin = "top-right";
|
||||
offset = "20x20";
|
||||
frame_width = 5;
|
||||
frame_color = "#282828";
|
||||
corner_radius = 10;
|
||||
};
|
||||
|
||||
urgency_low = {
|
||||
background = "#1d2021";
|
||||
foreground = "#d4be98";
|
||||
};
|
||||
|
||||
urgency_normal = {
|
||||
background = "#1d2021";
|
||||
foreground = "#d4be98";
|
||||
};
|
||||
|
||||
urgency_critical = {
|
||||
background = "#1d2021";
|
||||
foreground = "#d4be98";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs.unstable; [
|
||||
home.packages = with pkgs; [
|
||||
wezterm
|
||||
];
|
||||
|
||||
|
|
|
@ -6,6 +6,9 @@ xrandr --output HDMI-A-0 --mode 1920x1080 --output DisplayPort-0 --mode 2560x144
|
|||
# Apply our wallpaper
|
||||
feh --bg-center ~/.repositories/dotfiles.nix/assets/chinatown.png
|
||||
|
||||
# Start our notification daemon
|
||||
dunst &
|
||||
|
||||
# Enable our compositor
|
||||
picom -b
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue