This commit is contained in:
Daylin Morgan 2024-03-13 10:42:36 -05:00
parent 6ad1950f5e
commit b33633cd3c
Signed by: daylin
GPG key ID: 950D13E9719334AD
5 changed files with 3 additions and 6 deletions

View file

@ -6,7 +6,7 @@
lib = nixpkgs.lib.extend (import ./extended.nix);
inherit (builtins) concatLists attrValues mapAttrs elemAt match readDir filter listToAttrs;
inherit (lib) hasSuffix nixosSystem genAttrs isNixFile;
inherit (lib) nixosSystem genAttrs isNixFile;
inherit (lib.filesystem) listFilesRecursive;
#supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];

View file

@ -1,11 +1,9 @@
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkOption types literalExpression mdDoc;
cfg = config.oizys.languages;
in {
imports = [./nim.nix ./tex.nix ./misc.nix ./node.nix ./python.nix];
options.oizys.languages = mkOption {

View file

@ -4,7 +4,7 @@
pkgs,
...
}: let
inherit (lib) mkIf mkIfIn;
inherit (lib) mkIfIn;
cfg = config.oizys.languages;
in {
config = mkIfIn "tex" cfg {

View file

@ -1,7 +1,6 @@
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf;

View file

@ -12,7 +12,7 @@
in {
nixpkgs.overlays = defaultOverlays ++ [
(
final: prev: {
final: _prev: {
stable = import inputs.stable { system = final.system;
config.allowUnfree = true;
};