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
:ensure t
: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
overlay-unstable = final: prev: {
unstable = import inputs.nixpkgs-unstable {
system = system;
inherit system;
config.allowUnfree = true;
};
};

View File

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