housekeeping
This commit is contained in:
parent
3d49b1c5f1
commit
7a2b125646
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, config, ... }: {
|
||||
{ config, ... }: {
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
|
||||
# Notification scripts
|
||||
./scripts/dunstify-volume-notification.nix
|
||||
|
||||
# Helper scripts
|
||||
./scripts/emoji-picker.nix
|
||||
];
|
||||
|
||||
home.packages = [
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
# TODO add emoji and dmenu-dict scripts
|
||||
home.file.".config/sxhkd/sxhkdrc" = {
|
||||
recursive = true;
|
||||
text = ''
|
||||
|
@ -35,9 +36,6 @@
|
|||
Print
|
||||
flameshot gui
|
||||
|
||||
control + F11
|
||||
dmenu-clipper
|
||||
|
||||
control + F8
|
||||
dmenu-dict
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
picom -b --config ~/.config/picom/picom.conf
|
||||
xrdb ~/.Xresources
|
||||
|
||||
autostart="dwmblocks feh-wallpaper-changer sxhkd dunst"
|
||||
autostart="dwmblocks feh-wallpaper-changer sxhkd"
|
||||
|
||||
for program in $autostart; do
|
||||
pidof -sx "$program" || "$program" &
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
{ ...
|
||||
}: {
|
||||
imports = [
|
||||
# Import users
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
{ ...
|
||||
}: {
|
||||
imports = [
|
||||
# Import users
|
||||
|
@ -21,7 +17,7 @@
|
|||
# | DP-1
|
||||
# ------
|
||||
monitors = [
|
||||
{
|
||||
{
|
||||
name = "Virtual-1";
|
||||
width = 2048;
|
||||
height = 1152;
|
||||
|
@ -29,5 +25,5 @@
|
|||
workspace = "1";
|
||||
primary = true;
|
||||
}
|
||||
];
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{ inputs
|
||||
, ...
|
||||
{ ...
|
||||
}: {
|
||||
imports = [
|
||||
# Import users
|
||||
|
|
Loading…
Reference in New Issue