Compare commits
No commits in common. "735477e1ed590f77baace11ad746a99667688338" and "3633e3995c59c8e2cd685d3452f68450ed099b76" have entirely different histories.
735477e1ed
...
3633e3995c
5 changed files with 3 additions and 34 deletions
6
flake.lock
generated
6
flake.lock
generated
|
|
@ -642,11 +642,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1770770419,
|
"lastModified": 1770617025,
|
||||||
"narHash": "sha256-iKZMkr6Cm9JzWlRYW/VPoL0A9jVKtZYiU4zSrVeetIs=",
|
"narHash": "sha256-1jZvgZoAagZZB6NwGRv2T2ezPy+X6EFDsJm+YSlsvEs=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "6c5e707c6b5339359a9a9e215c5e66d6d802fd7a",
|
"rev": "2db38e08fdadcc0ce3232f7279bab59a15b94482",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ in
|
||||||
wget
|
wget
|
||||||
ssh-tresor
|
ssh-tresor
|
||||||
starship
|
starship
|
||||||
wezterm
|
|
||||||
];
|
];
|
||||||
shells = [
|
shells = [
|
||||||
pkgs.fish
|
pkgs.fish
|
||||||
|
|
|
||||||
|
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -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" ];
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
@ -30,7 +30,6 @@ with lib.metacfg;
|
||||||
tools = {
|
tools = {
|
||||||
direnv.enable = true;
|
direnv.enable = true;
|
||||||
alacritty.enable = true;
|
alacritty.enable = true;
|
||||||
wezterm.enable = true;
|
|
||||||
};
|
};
|
||||||
build.enable = true;
|
build.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue