Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: greetd for river

+19 -3
+1 -3
hosts/x86_64-linux/loki/default.nix
··· 112 112 protonup 113 113 kitty 114 114 vlc 115 + pavucontrol 115 116 116 117 # For gaming purposes 117 118 ananicy-cpp 118 119 ananicy-rules-cachyos 119 - 120 - # Desktop 121 - swaybg 122 120 ]; 123 121 124 122 # Define a user account. Don't forget to set a password with ‘passwd’.
+18
modules/nixos/services/window-managers/river/default.nix
··· 15 15 xwayland.enable = true; 16 16 extraPackages = cfg.extraPackages; 17 17 }; 18 + 19 + services.greetd = { 20 + enable = true; 21 + settings = { 22 + default_session = { 23 + command = ''${pkgs.greetd.tuigreet}/bin/tuigreet \ 24 + --remember \ 25 + --remember-session \ 26 + --asterisks \ 27 + --time ''; 28 + user = "greeter"; 29 + }; 30 + }; 31 + }; 32 + 33 + environment.etc."greetd/environments".text = '' 34 + river 35 + ''; 18 36 }); 19 37 }