forked from pub-solar/os
teutat3s
998255e364
• Updated input 'master': 'github:nixos/nixpkgs/8e9d4495c78515277aa43d579610ef3750f59e2c' (2023-12-17) → 'github:nixos/nixpkgs/3b0e747000d10e26eaab44e2958bea2ee28c6de6' (2023-12-19) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/40c3c94c241286dd2243ea34d3aef8a488f9e4d0' (2023-12-15) → 'github:nixos/nixpkgs/1e2e384c5b7c50dbf8e9c441a9e58d85f408b01f' (2023-12-17) • Updated input 'unstable': 'github:nixos/nixpkgs/a9bf124c46ef298113270b1f84a164865987a91c' (2023-12-11) → 'github:nixos/nixpkgs/91a00709aebb3602f172a0bf47ba1ef013e34835' (2023-12-17)
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
self,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake = {
|
|
nixosModules = rec {
|
|
overlays = ({ ... }: {
|
|
nixpkgs.overlays = [
|
|
(final: prev:
|
|
let
|
|
unstable = import inputs.unstable {
|
|
system = prev.system;
|
|
config.allowUnfreePredicate = pkg: builtins.elem (prev.lib.getName pkg) [
|
|
"slack"
|
|
];
|
|
};
|
|
master = import inputs.master {
|
|
system = prev.system;
|
|
};
|
|
in
|
|
{
|
|
direnv = unstable.direnv;
|
|
nix-direnv = unstable.nix-direnv;
|
|
qMasterPassword-wayland = unstable.qMasterPassword-wayland;
|
|
slack = unstable.slack;
|
|
signal-desktop = unstable.signal-desktop;
|
|
#vimPlugins = prev.vimPlugins // {inherit (unstable.vimPlugins) nvim-lspconfig;};
|
|
})
|
|
(import ../pkgs)
|
|
(import ./blesh.nix)
|
|
(import ./element-desktop.nix)
|
|
(import ./mdbook-multilang.nix inputs)
|
|
(import ./nix-index.nix)
|
|
(import ./prr.nix)
|
|
(import ./neovim-plugins.nix)
|
|
];
|
|
});
|
|
};
|
|
};
|
|
}
|