mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 18:17:44 +00:00
treewide: get rid of attrValues pattern because nixd doesn't support goto def on it
This commit is contained in:
parent
30d4b5e421
commit
372df8b48a
11 changed files with 160 additions and 196 deletions
|
@ -1,5 +1,5 @@
|
|||
{ self, config, lib, pkgs, ... }: let
|
||||
inherit (lib) attrValues head mkAfter enabled merge mkIf;
|
||||
inherit (lib) head mkAfter enabled merge mkIf;
|
||||
inherit (lib.strings) match;
|
||||
in {
|
||||
environment.shellAliases = merge {
|
||||
|
@ -68,12 +68,10 @@ in {
|
|||
"ask-git" = "gh copilot suggest --target git --";
|
||||
};
|
||||
|
||||
environment.systemPackages = attrValues {
|
||||
inherit (pkgs)
|
||||
git-absorb
|
||||
tig
|
||||
;
|
||||
};
|
||||
environment.systemPackages = [
|
||||
pkgs.git-absorb
|
||||
pkgs.tig
|
||||
];
|
||||
|
||||
home-manager.sharedModules = [
|
||||
(homeArgs: let
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue