+50
-1
modules/base.nix
+50
-1
modules/base.nix
···
103
];
104
};
105
106
+
system = {
107
+
replaceDependencies.replacements = with pkgs; [
108
+
{
109
+
oldDependency = coreutils-full;
110
+
newDependency = symlinkJoin {
111
+
name =
112
+
"coreuutils-full"
113
+
+ builtins.concatStringsSep "" (
114
+
builtins.genList (_: "_") (builtins.stringLength pkgs.coreutils-full.version)
115
+
);
116
+
paths = [ uutils-coreutils-noprefix ];
117
+
};
118
+
}
119
+
{
120
+
oldDependency = coreutils;
121
+
newDependency = symlinkJoin {
122
+
name =
123
+
"coreuutils"
124
+
+ builtins.concatStringsSep "" (
125
+
builtins.genList (_: "_") (builtins.stringLength pkgs.coreutils.version)
126
+
);
127
+
paths = [ uutils-coreutils-noprefix ];
128
+
};
129
+
}
130
+
{
131
+
oldDependency = findutils;
132
+
newDependency = symlinkJoin {
133
+
name =
134
+
"finduutils"
135
+
+ builtins.concatStringsSep "" (
136
+
builtins.genList (_: "_") (builtins.stringLength pkgs.findutils.version)
137
+
);
138
+
paths = [ uutils-findutils ];
139
+
};
140
+
}
141
+
{
142
+
oldDependency = diffutils;
143
+
newDependency = symlinkJoin {
144
+
name =
145
+
"diffuutils"
146
+
+ builtins.concatStringsSep "" (
147
+
builtins.genList (_: "_") (builtins.stringLength pkgs.diffutils.version)
148
+
);
149
+
paths = [ uutils-diffutils ];
150
+
};
151
+
}
152
+
];
153
+
154
+
stateVersion = "25.05";
155
+
};
156
}
+4
-2
systems/desktop/default.nix
+4
-2
systems/desktop/default.nix
+4
-2
systems/laptop/default.nix
+4
-2
systems/laptop/default.nix