summaryrefslogtreecommitdiff
path: root/home/pc/home.nix
blob: 16240ed5a4e86da5cf0a698cb255837120f98b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:
{
  imports = [
    ./modules/pass.nix
    ../wayland/home.nix
  ];

  home.packages = with pkgs; [
    ffmpeg
    mosh
  ];
}