dotfiles/nixos/home-manager/modules/xterm.nix
2020-12-26 23:58:39 +01:00

12 lines
244 B
Nix

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