Compare commits

..

No commits in common. "735477e1ed590f77baace11ad746a99667688338" and "3633e3995c59c8e2cd685d3452f68450ed099b76" have entirely different histories.

5 changed files with 3 additions and 34 deletions

6
flake.lock generated
View file

@ -642,11 +642,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1770770419,
"narHash": "sha256-iKZMkr6Cm9JzWlRYW/VPoL0A9jVKtZYiU4zSrVeetIs=",
"lastModified": 1770617025,
"narHash": "sha256-1jZvgZoAagZZB6NwGRv2T2ezPy+X6EFDsJm+YSlsvEs=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "6c5e707c6b5339359a9a9e215c5e66d6d802fd7a",
"rev": "2db38e08fdadcc0ce3232f7279bab59a15b94482",
"type": "github"
},
"original": {

View file

@ -39,7 +39,6 @@ in
wget
ssh-tresor
starship
wezterm
];
shells = [
pkgs.fish

View file

@ -1,19 +0,0 @@
{ lib
, config
, pkgs
, ...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.metacfg.tools.wezterm;
in
{
options.metacfg.tools.wezterm = {
enable = mkEnableOption "wezterm";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ wezterm ];
};
}

View file

@ -1,10 +0,0 @@
{ ... }:
final: prev: {
inetutils = prev.inetutils.overrideAttrs (old: {
# Fix gnulib variadic macro error on Darwin with newer Clang
# The error.h macro __gl_error_call1 has issues with __VA_ARGS__
# and -Werror,-Wformat-security causes build failures
NIX_CFLAGS_COMPILE = (old.NIX_CFLAGS_COMPILE or "") + " -Wno-error";
hardeningDisable = (old.hardeningDisable or [ ]) ++ [ "format" ];
});
}

View file

@ -30,7 +30,6 @@ with lib.metacfg;
tools = {
direnv.enable = true;
alacritty.enable = true;
wezterm.enable = true;
};
build.enable = true;
};