dotfiles/nixos/home-manager/modules/urxvt.nix
2021-01-18 09:00:12 +01:00

12 lines
254 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; [
rxvt-unicode
];
}