nix-dotfiles/services/scripts/default.nix

11 lines
121 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
let
select = import ./select.nix { inherit pkgs; };
in
{
home.packages = [
select
];
}