10 lines
121 B
Nix
10 lines
121 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
select = import ./select.nix { inherit pkgs; };
|
|
in
|
|
{
|
|
home.packages = [
|
|
select
|
|
];
|
|
}
|