dotfiles/nixos/home-manager/modules/xterm.nix

12 lines
244 B
Nix
Raw Normal View History

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