dotfiles/nixos/hm-modules/urxvt.nix

12 lines
190 B
Nix
Raw Normal View History

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
{ config, lib, ... }:
2021-01-18 20:24:07 +01:00
{
imports = [
2021-01-18 20:24:07 +01:00
./xresources
];
home.packages = with nixpkgs; [
rxvt-unicode
];
}