summaryrefslogtreecommitdiff
path: root/home/wayland/home.nix
blob: 02bab78ecb18feb9ae5298e4671d787bd1fb2d50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ pkgs, ... }:
{
  imports = [
    ../common/home.nix
    ./modules/foot.nix
    ./modules/mango.nix
    ./modules/portal.nix
    ./modules/zathura.nix
    ./modules/firefox.nix
    ./modules/mimeapps.nix
    ./modules/ttyasrt.nix
    ./modules/sway/home.nix
  ];

  home = {
    sessionVariables.NIXOS_OZONE_WL = 1;

    packages = with pkgs; [
      wtype
      grim
      slurp
      xdg-utils

      mpv
      imv
      qemu
      hoppscotch
      element-desktop
      gimp3
    ];
  };
}