summaryrefslogtreecommitdiffstats
path: root/x11.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-05-16 17:25:34 -0400
committerSkullheadx <admonty1@protonmail.com>2026-05-16 17:25:34 -0400
commitc0d3c15c28108a9d6a139f046b01abfe2a0a0251 (patch)
tree7f50b22b39f00ff4ca69c3a2ce6dfbb3cff781ab /x11.nix
parentnvf neovim (diff)
downloadnixos-c0d3c15c28108a9d6a139f046b01abfe2a0a0251.tar.gz
nixos-c0d3c15c28108a9d6a139f046b01abfe2a0a0251.tar.bz2
nixos-c0d3c15c28108a9d6a139f046b01abfe2a0a0251.zip
format
Diffstat (limited to '')
-rw-r--r--x11.nix65
1 files changed, 31 insertions, 34 deletions
diff --git a/x11.nix b/x11.nix
index d999607..743ffd0 100644
--- a/x11.nix
+++ b/x11.nix
@@ -51,7 +51,6 @@
enable = true;
};
-
hjem.users.andrew = {
files = {
".config/sxhkd/sxhkdrc".text = builtins.readFile (
@@ -73,57 +72,55 @@
};
};
-systemd.user.services.sxhkd = {
- description = "Simple X Hot Key Daemon (sxhkd)";
+ systemd.user.services.sxhkd = {
+ description = "Simple X Hot Key Daemon (sxhkd)";
- path = with pkgs; [
- dmenu
- st
+ path = with pkgs; [
+ dmenu
+ st
- pamixer
+ pamixer
- maim
- xdotool
- xclip
+ maim
+ xdotool
+ xclip
- lock-screen
+ lock-screen
- sfeed
+ sfeed
- rmpc
- mpc
+ rmpc
+ mpc
- surf
- librewolf
- surf_search
- ];
+ surf
+ librewolf
+ surf_search
+ ];
- environment = {
- SFEED_PLUMBER = "surf";
+ environment = {
+ SFEED_PLUMBER = "surf";
SFEED_URL_FILE = "/home/andrew/.local/share/sfeed/sfeed_read_url_file";
- };
-
- serviceConfig = {
- ExecStart = "${pkgs.sxhkd}/bin/sxhkd";
- Restart = "on-failure";
- };
- wantedBy = [ "graphical-session.target" ];
-};
-
+ };
+ serviceConfig = {
+ ExecStart = "${pkgs.sxhkd}/bin/sxhkd";
+ Restart = "on-failure";
+ };
+ wantedBy = [ "graphical-session.target" ];
+ };
systemd.user.services.slstatus = {
description = "slstatus bar";
wantedBy = [ "graphical-session.target" ];
-
- path = with pkgs; [
- pamixer
- scrolling-title
+
+ path = with pkgs; [
+ pamixer
+ scrolling-title
];
serviceConfig = {
ExecStart = "${pkgs.slstatus}/bin/slstatus";
-
+
Restart = "always";
RestartSec = "1s";
};