about summary refs log tree commit diff stats
path: root/home-manger/default.nix
blob: 2e9d7d551310f03436b4f724eb74c9a3caec4860 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# vim: ts=2
{
  config,
  pkgs,
  home-manager,
  ...
}: {
  imports = [
    home-manager.nixosModules.home-manger

    ./alacritty.nix
    ./cups.nix
    ./gammastep.nix
  ];

  home-manager.users.soispha = {
    home.packages = [];
  };
}