dotfiles/nix/home-manager/modules/xterm.nix
Richard Brežák c98b2af55e Inputs in rlib modules and Nomad NixOS module
Signed-off-by: Richard Brežák <rbrezak@qualityunit.com>
2021-03-08 21:35:29 +01:00

12 lines
262 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
{ config, lib, ... }:
{
imports = [
(import ./xresources { inherit nixpkgs nixpkgs-unstable nixpkgs-master custom; })
];
home.packages = with nixpkgs; [
xterm
];
}