Amakesh

Untitled

Feb 1st, 2026
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. { pkgs, ... }: {
  2. home.username = "admin";
  3. home.homeDirectory = "/home/admin";
  4. home.stateVersion = "25.11";
  5.  
  6. home.file = { };
  7.  
  8. home.sessionVariables = {
  9. TERMINAL = "kitty";
  10. XDG_TERMINAL_EMULATOR = "kitty";
  11.  
  12. NIXOS_OZONE_WL = "1"; # Hint electron apps to use wayland
  13. ELECTRON_OZONE_PLATFORM_HINT = "auto";
  14.  
  15. XDG_SESSION_TYPE = "wayland";
  16.  
  17. QT_AUTO_SCREEN_SCALE_FACTOR = "1";
  18. QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
  19. QT_QPA_PLATFORM = "wayland;xcb";
  20. };
  21.  
  22. systemd.user.sessionVariables = {
  23. PATH = "$HOME/.nix-profile/bin:/run/current-system/sw/bin";
  24. };
  25.  
  26. programs.home-manager.enable = true;
  27. programs.waybar.enable = true;
Advertisement
Add Comment
Please, Sign In to add comment