about summary refs log tree commit diff stats
path: root/home-manager/default.nix
blob: ffec4ccc0388592078519bdf48414dc68495c463 (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
# vim: ts=2
{
  config,
  pkgs,
  home-manager,
  ...
}: {
  imports = [
    home-manager.nixosModules.home-manger

    ./alacritty
    ./cups
    ./firefox
    ./gammastep
    ./git
    ./grades
    ./gtk
    ./keepassxc
    ./latexindent
    ./less
    ./lf
    ./mako
    ./mpd
  ];

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