mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-02 15:04:53 +02:00
more stuff for buldak
This commit is contained in:
parent
2016bc4319
commit
9293a8e813
4 changed files with 49 additions and 13 deletions
|
@ -579,18 +579,18 @@ environment {
|
||||||
}
|
}
|
||||||
|
|
||||||
// apps to launch at startup
|
// apps to launch at startup
|
||||||
spawn-at-startup "qutebrowser"
|
|
||||||
spawn-at-startup "discord"
|
spawn-at-startup "discord"
|
||||||
spawn-at-startup "beeper"
|
spawn-at-startup "footclient" "nvim" "~/Documents/Notes"
|
||||||
spawn-at-startup "cinny"
|
spawn-at-startup "cider"
|
||||||
|
|
||||||
clipboard {
|
clipboard {
|
||||||
disable-primary
|
disable-primary
|
||||||
}
|
}
|
||||||
|
|
||||||
workspace "code"
|
workspace "code "
|
||||||
workspace "internet"
|
workspace "internet "
|
||||||
workspace "chat"
|
workspace "chat "
|
||||||
|
workspace "music "
|
||||||
|
|
||||||
window-rule {
|
window-rule {
|
||||||
match at-startup=true app-id=r#"^discord$"#
|
match at-startup=true app-id=r#"^discord$"#
|
||||||
|
@ -611,6 +611,11 @@ window-rule {
|
||||||
open-on-workspace "internet"
|
open-on-workspace "internet"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window-rule {
|
||||||
|
match at-startup=true app-id=r#"Cider$"#
|
||||||
|
open-on-workspace "music"
|
||||||
|
}
|
||||||
|
|
||||||
window-rule {
|
window-rule {
|
||||||
match app-id=r#"mpv$"#
|
match app-id=r#"mpv$"#
|
||||||
open-floating true
|
open-floating true
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
"network",
|
"network",
|
||||||
"wireplumber",
|
"wireplumber",
|
||||||
"clock",
|
"clock",
|
||||||
"privacy"
|
"privacy",
|
||||||
|
"battery"
|
||||||
],
|
],
|
||||||
"clock": {
|
"clock": {
|
||||||
"format-alt": "{:%a, %d. %b %H:%M}"
|
"format-alt": "{:%a, %d. %b %H:%M}"
|
||||||
|
@ -81,5 +82,14 @@
|
||||||
},
|
},
|
||||||
"tray": {
|
"tray": {
|
||||||
"spacing": 10
|
"spacing": 10
|
||||||
|
},
|
||||||
|
"battery": {
|
||||||
|
"bat": "BAT0",
|
||||||
|
"states": {
|
||||||
|
"warning": 20,
|
||||||
|
"critical": 10
|
||||||
|
},
|
||||||
|
"format": "{capacity}% {icon}"
|
||||||
|
"format-icons": ["", "", "", "", ""],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,12 +112,31 @@
|
||||||
".config/hyfetch.json".source = dotfiles/hyfetch/hyfetch.json;
|
".config/hyfetch.json".source = dotfiles/hyfetch/hyfetch.json;
|
||||||
".config/niri".source = dotfiles/niri;
|
".config/niri".source = dotfiles/niri;
|
||||||
".config/mako".source = dotfiles/mako;
|
".config/mako".source = dotfiles/mako;
|
||||||
|
};
|
||||||
|
|
||||||
# # You can also set the file content immediately.
|
programs.matugen = {
|
||||||
# ".gradle/gradle.properties".text = ''
|
enable = true;
|
||||||
# org.gradle.console=verbose
|
variant = "dark";
|
||||||
# org.gradle.daemon.idletimeout=3600000
|
|
||||||
# '';
|
config = {
|
||||||
|
wallpaper = {
|
||||||
|
command = "swww";
|
||||||
|
arguments = [
|
||||||
|
"img"
|
||||||
|
"--transition-type"
|
||||||
|
"center"
|
||||||
|
];
|
||||||
|
set = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
templates = {
|
||||||
|
waybar = {
|
||||||
|
input_path = "./templates/colors.css";
|
||||||
|
output_path = "~/.config/waybar/colors.css";
|
||||||
|
post_hook = "pkill -SIGUSR2 waybar";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
|
@ -198,7 +217,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
userName = "chloe";
|
userName = "misschloe777";
|
||||||
userEmail = "harryh@ik.me";
|
userEmail = "harryh@ik.me";
|
||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
|
@ -355,6 +374,7 @@
|
||||||
search_mode = "fuzzy";
|
search_mode = "fuzzy";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# programs.moonlight = {
|
# programs.moonlight = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# configs.stable = {
|
# configs.stable = {
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
osu-lazer-bin
|
osu-lazer-bin
|
||||||
signal-desktop
|
signal-desktop
|
||||||
cider-2
|
cider-2
|
||||||
|
iamb
|
||||||
];
|
];
|
||||||
|
|
||||||
virtualisation.containers.enable = true;
|
virtualisation.containers.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue