default.nix 617 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. { config, pkgs, ... }:
  2. {
  3. imports = [
  4. ];
  5. environment.systemPackages = with pkgs; [
  6. cliphist
  7. wl-clipboard
  8. mission-center
  9. hyprpicker
  10. flameshot
  11. nomacs
  12. nemo
  13. gammastep
  14. geoclue2
  15. ];
  16. programs.sway = {
  17. enable = true;
  18. wrapperFeatures.gtk = true;
  19. extraPackages = with pkgs; [
  20. alacritty
  21. swaylock
  22. swayidle
  23. swaybg
  24. ];
  25. };
  26. programs.foot.enable = false;
  27. environment.variables = {
  28. GDK_BACKEND = "wayland";
  29. XDG_SESSION_TYPE = "wayland";
  30. };
  31. security.pam.services.swaylock = {};
  32. services.gnome.gnome-keyring.enable = true;
  33. }