mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
13 lines
224 B
Nix
13 lines
224 B
Nix
inputs:
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }@ rpkgs:
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = rlib.callModules rpkgs [
|
|
./xresources
|
|
];
|
|
|
|
home.packages = with nixpkgs; [
|
|
rxvt-unicode
|
|
];
|
|
}
|