aboutsummaryrefslogtreecommitdiff
path: root/home.nix
blob: 230502c3a2960788525b6ef1ef9d7a6a9d8dd403 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ inputs, config, lib, pkgs,  ... }:
{
  imports = [
    ./modules/global.nix
    ./modules
  ];

  config.modules = {
    foot.enable = true;
  };
}