- Removes global development utilities file and shifts related tools to core - Updates gaming and vscode modules with refined commands and file renames - Wraps GNOME dconf settings in mkDefault/mkForce for consistency across users - Adds host-specific configurations (dconf, monitors, and VM settings) - Organizes user theme files by relocating global assets to user directories
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 ]);
|
|
};
|
|
}
|