home: Add autostart option and add some packages
This commit is contained in:
parent
f546ee06de
commit
5c9a8860c2
@ -7,6 +7,12 @@ in
|
||||
{
|
||||
options.nixfiles.common.wm = {
|
||||
enable = lib.mkEnableOption "common window manager config";
|
||||
autostart = lib.mkOption {
|
||||
description = "List of window manager agnostic commnads to run at window manager startup";
|
||||
type = lib.types.listOf lib.types.str;
|
||||
default = [ ];
|
||||
example = [ "steam -silent" ];
|
||||
};
|
||||
};
|
||||
config = lib.mkIf cfg.enable {
|
||||
# Common options for standalone window managers; many of these (or
|
||||
|
@ -5,6 +5,8 @@ let
|
||||
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.rustdesk-flutter
|
||||
else
|
||||
pkgs.rustdesk-flutter;
|
||||
|
||||
vesktop-ozone-cmd = "env NIXOS_OZONE_WL=1 vesktop --disable-gpu";
|
||||
in
|
||||
{
|
||||
options.nixfiles.packageSets.communication = {
|
||||
@ -14,7 +16,7 @@ in
|
||||
|
||||
xdg.desktopEntries.vesktop = lib.mkIf config.nixfiles.meta.graphical {
|
||||
categories= ["Network" "InstantMessaging" "Chat"];
|
||||
exec="env NIXOS_OZONE_WL=1 vesktop --disable-gpu %U";
|
||||
exec=vesktop-ozone-cmd + " %U";
|
||||
genericName="Internet Messenger";
|
||||
icon="vesktop";
|
||||
name="Vesktop";
|
||||
@ -25,6 +27,10 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
nixfiles.common.wm.autostart = lib.optionals config.nixfiles.meta.graphical [
|
||||
(vesktop-ozone-cmd + " --start-minimized")
|
||||
];
|
||||
|
||||
home.packages = with pkgs; lib.optionals config.nixfiles.meta.graphical [
|
||||
element-desktop
|
||||
telegram-desktop
|
||||
|
@ -5,6 +5,10 @@ let
|
||||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
nixfiles.common.wm.autostart = [
|
||||
"steam -silent"
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
ludusavi
|
||||
rclone # needed to sync ludusavi
|
||||
|
@ -128,7 +128,8 @@ in
|
||||
# Execute your favorite apps at launch
|
||||
# exec-once = waybar & hyprpaper & firefox
|
||||
|
||||
exec-once = (lib.optional cfg.autolock lock-cmd) ++ [
|
||||
exec-once = (lib.optional cfg.autolock lock-cmd) ++ config.nixfiles.common.wm.autostart ++
|
||||
[
|
||||
wallpaper-cmd
|
||||
notifydaemon
|
||||
polkit-agent
|
||||
|
Loading…
x
Reference in New Issue
Block a user