mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-14 13:43:59 -05:00
21 lines
310 B
Nix
21 lines
310 B
Nix
{ pkgs, config, ... }:
|
|
let
|
|
in
|
|
{
|
|
imports = [
|
|
../../pinned.nix
|
|
../../unstable.nix
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
# pinned.vscode
|
|
(unstable.vscode.fhsWithPackages (
|
|
pkgs: with pkgs; [
|
|
powershell
|
|
]
|
|
))
|
|
# codium
|
|
zed-editor
|
|
];
|
|
};
|
|
}
|