mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-21 01:34:34 +05:30
Fixed a lot of autostart and locking problems
This commit is contained in:
parent
ca9a4e5820
commit
dc0a87f941
|
@ -14,8 +14,11 @@
|
||||||
auth include login
|
auth include login
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
pam.services.login.enableGnomeKeyring = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
hyprland = {
|
hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -4,7 +4,6 @@ let
|
||||||
dashboardLogo = ./. + "/nix-" + themePolarity + ".png";
|
dashboardLogo = ./. + "/nix-" + themePolarity + ".png";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.emacs.enable = true;
|
|
||||||
programs.doom-emacs = {
|
programs.doom-emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
emacsPackage = pkgs.emacs29-pgtk;
|
emacsPackage = pkgs.emacs29-pgtk;
|
||||||
|
|
|
@ -1486,7 +1486,6 @@ let
|
||||||
dashboardLogo = ./. + "/nix-" + themePolarity + ".png";
|
dashboardLogo = ./. + "/nix-" + themePolarity + ".png";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.emacs.enable = true;
|
|
||||||
programs.doom-emacs = {
|
programs.doom-emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
emacsPackage = pkgs.emacs29-pgtk;
|
emacsPackage = pkgs.emacs29-pgtk;
|
||||||
|
|
|
@ -15,12 +15,13 @@
|
||||||
plugins = [ ];
|
plugins = [ ];
|
||||||
settings = { };
|
settings = { };
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
exec-once = dbus-update-activation-environment DISPLAY XAUTHORITY WAYLAND_DISPLAY
|
||||||
exec-once = pypr
|
exec-once = pypr
|
||||||
exec-once = nm-applet
|
exec-once = nm-applet
|
||||||
exec-once = GOMAXPROCS=1 syncthing --no-browser
|
exec-once = GOMAXPROCS=1 syncthing --no-browser
|
||||||
exec-once = protonmail-bridge --noninteractive
|
exec-once = protonmail-bridge --noninteractive
|
||||||
exec-once = gnome-keyring-daemon --daemonize --login
|
exec-once = waybar
|
||||||
exec-once = gnome-keyring-daemon --start --components=secrets
|
exec-once = emacs --daemon
|
||||||
|
|
||||||
exec-once = ~/.swayidle-stylix
|
exec-once = ~/.swayidle-stylix
|
||||||
exec = ~/.swaybg-stylix
|
exec = ~/.swaybg-stylix
|
||||||
|
@ -181,7 +182,15 @@
|
||||||
hyprland-protocols
|
hyprland-protocols
|
||||||
hyprpicker
|
hyprpicker
|
||||||
swayidle
|
swayidle
|
||||||
swaylock-effects
|
(pkgs.swaylock-effects.overrideAttrs (oldAttrs: {
|
||||||
|
version = "1.6.4-1";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mortie";
|
||||||
|
repo = "swaylock-effects";
|
||||||
|
rev = "20ecc6a0a5b61bb1a66cfb513bc357f74d040868";
|
||||||
|
sha256 = "sha256-nYA8W7iabaepiIsxDrCkG/WIFNrVdubk/AtFhIvYJB8=";
|
||||||
|
};
|
||||||
|
}))
|
||||||
swaybg
|
swaybg
|
||||||
fnott
|
fnott
|
||||||
#hyprpaper
|
#hyprpaper
|
||||||
|
|
Loading…
Reference in a new issue