Clean up the libs

This commit is contained in:
Andreas Zweili 2022-09-07 17:42:36 +02:00
parent 5bfdc0710c
commit 1f132b5012
3 changed files with 13 additions and 2 deletions

View File

@ -9,4 +9,4 @@
(use-package multi-vterm (use-package multi-vterm
:ensure t :ensure t
:config :config
(global-set-key (kbd "M-S RET") 'multi-vterm)) (global-set-key (kbd "M-S-RET") 'multi-vterm))

View File

@ -2,7 +2,7 @@
let let
overlay-unstable = final: prev: { overlay-unstable = final: prev: {
unstable = import inputs.nixpkgs-unstable { unstable = import inputs.nixpkgs-unstable {
system = system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };

View File

@ -1,10 +1,21 @@
{ custom, hostname, inputs, system ? "aarch64-linux", home-module ? "headless" }: { custom, hostname, inputs, system ? "aarch64-linux", home-module ? "headless" }:
let let
overlay-unstable = final: prev: {
unstable = import inputs.nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
pkgs = import inputs.nixpkgs { pkgs = import inputs.nixpkgs {
inherit system; inherit system;
config = { config = {
allowUnfree = true; allowUnfree = true;
}; };
overlays = [
overlay-unstable
inputs.nix-alien.overlay
];
}; };
in in
inputs.nixpkgs.lib.nixosSystem { inputs.nixpkgs.lib.nixosSystem {