diff options
author | Alan Pearce | 2020-11-26 10:17:06 +0100 |
---|---|---|
committer | Alan Pearce | 2020-11-26 10:17:06 +0100 |
commit | d2f23109a0c630c2487d580ea25998e6b5bd0864 (patch) | |
tree | 1109be44a76bd2f4d961c0d6abf08a518c1900e2 | |
parent | ada4944685955670ab11075ba99dcab842ac69e8 (diff) | |
download | nixfiles-d2f23109a0c630c2487d580ea25998e6b5bd0864.tar.lz nixfiles-d2f23109a0c630c2487d580ea25998e6b5bd0864.tar.zst nixfiles-d2f23109a0c630c2487d580ea25998e6b5bd0864.zip |
prefect: autostart work applications
-rw-r--r-- | user/prefect.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/user/prefect.nix b/user/prefect.nix index 954de1ee..3b517333 100644 --- a/user/prefect.nix +++ b/user/prefect.nix @@ -28,4 +28,11 @@ ./settings/xresources.nix ./settings/zsh.nix ]; + + xsession.windowManager.i3.config.startup = [ + { command = "firefox-devedition"; } + { command = "emacs"; } + { command = "barrier"; } + ]; + } |