chore: nix fmt refactor: split out more home-manager programs feat: migrate shell as flake devShell feat: initial flake structure with colmena feat: migrate elias-e525 to colmena feat: migrate steveej-t14 with colmena feat: configure chromium extensions chore: remove all overlays and package overrides chore: delete some of _archive feat: migrate vmd102066 feat: migrate sj-vps-htz0
26 lines
509 B
Nix
26 lines
509 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
nixpkgs.config.packageOverrides = pkgs:
|
|
with pkgs; {
|
|
nixPath =
|
|
(import ../../../default.nix {
|
|
versionsPath = ./versions.nix;
|
|
})
|
|
.nixPath;
|
|
};
|
|
home-manager.users.steveej = import ../../../home-manager/configuration/text-minimal.nix {
|
|
inherit pkgs;
|
|
extraPackages = [
|
|
# required by vscode's remote-ssh plugin
|
|
pkgs.nodejs
|
|
|
|
# allow clipboard exchanges
|
|
pkgs.xsel
|
|
pkgs.xclip
|
|
];
|
|
};
|
|
}
|