From b0214d50e9a728d77d98d791e92dfe3747f27e23 Mon Sep 17 00:00:00 2001 From: Quentin Aristote Date: Tue, 21 Feb 2023 22:34:46 +0100 Subject: factor out common home-manager configuration --- home/config/i3/startup.nix | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 home/config/i3/startup.nix (limited to 'home/config/i3/startup.nix') diff --git a/home/config/i3/startup.nix b/home/config/i3/startup.nix deleted file mode 100644 index fe3056e..0000000 --- a/home/config/i3/startup.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ config, lib, pkgs, ... }: - -let background-image = config.home.wallpaper; -in { - xsession.windowManager.i3.config.startup = let - autostart = { command, always ? false, notification ? false }: { - inherit command always notification; - }; - in (lib.optional config.services.redshift.enable - (autostart { command = "systemctl --user start redshift"; })) - ++ (lib.optional (background-image != null) (autostart { - command = "${pkgs.feh}/bin/feh --bg-scale ${background-image}"; - })) ++ (lib.optional config.services.xidlehook.enable - (autostart { command = "systemctl --user xidlehook.service"; })) - ++ (lib.optional config.services.emacs.enable - (autostart { command = "systemctl --user start emacs.service"; })) ++ [ - (autostart { command = "xfce4-power-manager --daemon"; }) - (autostart { command = "rfkill block bluetooth"; }) - # Launch frequently used apps - (autostart { command = "thunderbird"; }) - (autostart { command = "signal-desktop"; }) - (autostart { command = ''i3-msg "workspace 10; exec keepassxc"''; }) - ]; -} -- cgit v1.2.3