2021-01-18 20:24:07 +01:00
|
|
|
inputs:
|
|
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }@ rpkgs:
|
|
|
|
{ config, lib, pkgs, ... }: {
|
|
|
|
home.packages = [
|
|
|
|
# custom.enter-env
|
|
|
|
nixpkgs-unstable.nomad_1_0
|
|
|
|
custom.sss-cli
|
2021-01-24 17:43:50 +01:00
|
|
|
custom.enter-env
|
2021-02-01 12:00:24 +01:00
|
|
|
|
|
|
|
] ++ (with nixpkgs; [
|
|
|
|
fira-code
|
|
|
|
overpass
|
|
|
|
]);
|
2021-01-18 20:24:07 +01:00
|
|
|
|
|
|
|
home.stateVersion = "20.09";
|
|
|
|
|
2021-01-24 17:43:50 +01:00
|
|
|
programs.gpg.enable = true;
|
|
|
|
|
2021-01-18 20:24:07 +01:00
|
|
|
imports = rlib.callModules rpkgs [
|
|
|
|
../hm-modules/alacritty
|
|
|
|
../hm-modules/bash
|
|
|
|
../hm-modules/cmdline-utils.nix
|
|
|
|
../hm-modules/dunst
|
|
|
|
../hm-modules/emacs
|
|
|
|
../hm-modules/graphical-programs.nix
|
|
|
|
|
|
|
|
../hm-modules/webdev.nix
|
2021-01-25 20:40:55 +01:00
|
|
|
../hm-modules/rust.nix
|
2021-01-18 20:24:07 +01:00
|
|
|
|
|
|
|
../hm-modules/nix-du.nix
|
|
|
|
../hm-modules/picom
|
|
|
|
|
|
|
|
../hm-modules/urxvt.nix
|
|
|
|
] ++ [
|
2021-01-24 17:43:50 +01:00
|
|
|
(rlib.callModule rpkgs ../hm-modules/xmonad "heater")
|
2021-01-18 20:24:07 +01:00
|
|
|
];
|
|
|
|
}
|