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