Files
dotfiles/home/linux/gui.nix
uttarayan21 65f57743dd feat: Enable hdr in hyprland
Signed-off-by: uttarayan21 <email@uttarayan.me>
2025-05-16 13:08:30 +05:30

40 lines
793 B
Nix

{
pkgs,
device,
lib,
...
}: {
systemd.user.services.onepassword-gui = lib.optionalAttrs pkgs.stdenv.isLinux {
Unit = {
Description = "1Password GUI";
BindsTo = ["graphical-session.target"];
After = ["graphical-session-pre.target"];
};
Service = {
ExecStart = "${pkgs._1password-gui}/bin/1password";
Restart = "always";
};
Install = {
WantedBy = ["graphical-session.target"];
};
};
home.packages = with pkgs;
lib.optionals pkgs.stdenv.isLinux [
mullvad-closest
mullvad-vpn
nautilus
totem
ffmpegthumbnailer
polkit_gnome
seahorse
signal-desktop
sony-headphones-client
spotify
steam-run
wl-clipboard
zed-editor
prismlauncher
];
}