about summary refs log tree commit diff stats
path: root/flake/packages/default.nix
blob: cdc45c641b11d09ef0967f557410e26685069914 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
  self,
  nixos-generators,
  pkgs,
  myPkgs,
  pkgsStable,
  sysLib,
  nixVim,
  system,
  shell_library,
  ...
}: let
  inherit (pkgs) lib;
  inherit (import ./merge.nix {inherit lib;}) merge;
  output = import ../../bootstrap {inherit pkgs sysLib;};

  nvim =
    builtins.mapAttrs (
      name: value: let
        nvim_config =
          import ../../modules/home/conf/nvim/default.nix
          build_args;
        build_args = let
          inherit (value._module.args) pkgs;
          inherit (pkgs) lib;
        in {
          inherit pkgs pkgsStable lib;
          nixosConfig = value.config;
          config = value.config.home-manager.users.soispha;
        };

        resolve_imports = attrs:
          merge (builtins.map (v: import v build_args)
            attrs.imports);

        resolve_imports' = attrs:
          if builtins.any (n: n == "imports") (builtins.attrNames attrs)
          then
            resolve_imports' (merge [
              (resolve_imports attrs)
              (builtins.removeAttrs
                attrs
                ["imports"])
            ])
          else attrs;

        complete_config = resolve_imports' nvim_config;
      in
        nixVim.legacyPackages."${system}".makeNixvim
        (
          builtins.removeAttrs
          complete_config.programs.nixvim ["enable"]
        )
    )
    self.nixosConfigurations;

  output_neovim = lib.attrsets.mapAttrs' (name: value: lib.attrsets.nameValuePair "nvim_${name}" value) nvim;

  myPkgsFlat =
    builtins.listToAttrs
    # Filter out the `override` and `overrideDerivation` functions
    (builtins.filter ({
      name,
      value,
    }:
      lib.attrsets.isDerivation value) (lib.lists.flatten
      (
        lib.attrsets.mapAttrsToList (name: value:
          if lib.attrsets.isDerivation value
          then [
            {
              inherit name value;
            }
          ]
          else
            lib.attrsets.mapAttrsToList (name: value: {
              inherit name value;
            })
            value)
        myPkgs
      )));

  firefox = (import ../../modules/home/conf/firefox/scripts) {inherit pkgs sysLib;};
in
  {
    # install-iso = nixos-generators.nixosGenerate {
    #   system = "x86_64-linux";
    #   specialArgs = defaultSpecialArgs;
    #   modules = [
    #     ../../hosts/marduk
    #   ];
    #   format = "install-iso";
    # };

    update_shell_lib = shell_library.packages."${system}".update_shell_library;

    # gpg-iso = nixos-generators.nixosGenerate {
    #   system = "x86_64-linux";
    #   specialArgs = defaultSpecialArgs;
    #   modules =
    #     [
    #       ../../hosts/isimud
    #     ]
    #     ++ defaultModules;
    #   format = "iso";
    # };
    nvim = nvim.tiamat;
  }
  // output
  // output_neovim
  // firefox
  // myPkgsFlat