nixpkgs/home.nix

90 lines
1.8 KiB
Nix

{ config, pkgs, lib, ... }:
let
ownLib = import ./home/packages/lib;
in {
imports = [
./home/modules/programs/cmus.nix
./home/modules/programs/khal-notification.nix
./home/modules/programs/languagetool.nix
./home/modules/programs/mailhog.nix
./home/modules/programs/my-pidgin.nix
];
disabledModules = [
];
home = {
# Home Manager needs a bit of information about you and the
# paths it should manage.
username = "daniels";
homeDirectory = "/home/daniels";
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
stateVersion = "22.05";
packages = import ./home/packages.nix {
inherit pkgs ownLib;
};
file = import ./home/files.nix { };
} // import ./home/home.nix {
inherit config pkgs ownLib;
};
targets.genericLinux.enable = true;
accounts = import ./home/accounts.nix {
inherit config pkgs;
};
nix = import ./home/programs/nix.nix {
inherit pkgs;
};
programs = import ./home/programs.nix {
inherit config pkgs ownLib;
};
fonts.fontconfig.enable = true;
xsession = import ./home/xsession.nix {
inherit config pkgs ownLib;
};
xdg = import ./home/xdg.nix {
inherit pkgs;
};
dconf = import ./home/dconf.nix {
inherit lib;
};
qt = import ./home/qt.nix {
inherit pkgs;
};
gtk = import ./home/gtk.nix {
inherit config pkgs;
};
services = import ./home/services.nix {
inherit config ownLib pkgs;
};
systemd.user = import ./home/systemd.nix {
inherit config pkgs;
};
}