summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/system/default.nix
blob: a30ffe11d88d7aeebc11dc20eea15f8053e9fbaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ pkgs, ... }:
{
  imports = [
    ./encryption
    ./fonts
    ./shell
    ./terminal
    ./virtualisation
    ./peripheral.nix
    ./sops.nix
    ./ssh.nix
    ./tracing.nix
    ./variables.nix
    ./xdg.nix
  ];

  home.packages = with pkgs; [
    gnome-logs
    procs
  ];
}