• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
12 lines
262 B
Nix
12 lines
262 B
Nix
{ pkgs, ... }:
|
|
let
|
|
patched-openssh = pkgs.openssh.overrideAttrs (prev: {
|
|
patches = (prev.patches or [ ]) ++ [ ./openssh.patch ];
|
|
});
|
|
in
|
|
{
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.vscode.fhsWithPackages (_: [ patched-openssh ]);
|
|
};
|
|
}
|