mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-03 13:36:12 +01:00
31 lines
655 B
Nix
31 lines
655 B
Nix
|
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
|
||
|
];
|
||
|
|
||
|
home.stateVersion = "20.09";
|
||
|
|
||
|
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
|
||
|
|
||
|
#../hm-modules/i3
|
||
|
../hm-modules/nix-du.nix
|
||
|
../hm-modules/picom
|
||
|
|
||
|
../hm-modules/urxvt.nix
|
||
|
] ++ [
|
||
|
(rlib.callModule rpkgs ../hm-modules/i3 "heater")
|
||
|
];
|
||
|
}
|