mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
11 lines
126 B
Nix
11 lines
126 B
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [
|
||
|
./pinned.nix
|
||
|
];
|
||
|
home = {
|
||
|
packages = with pkgs.pinned; [
|
||
|
etcher
|
||
|
];
|
||
|
};
|
||
|
}
|