Fixed informis network
This commit is contained in:
parent
d0b193496e
commit
7142102acb
@ -1,9 +1,24 @@
|
||||
let
|
||||
nixos-version = "21.05";
|
||||
|
||||
hosts = import ./lib/hosts.nix { inherit nixos-version; };
|
||||
pkgs = import <nixpkgs> {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = [
|
||||
"openssh-with-gssapi-8.4p1"
|
||||
];
|
||||
};
|
||||
overlays = [
|
||||
(import ../fudo-pkgs/overlay.nix)
|
||||
];
|
||||
};
|
||||
|
||||
define-host = hosts.host-config;
|
||||
home-manager-module = import <home-manager/nixos>;
|
||||
|
||||
hostlib = import ./lib/hosts.nix {
|
||||
inherit pkgs home-manager-module;
|
||||
};
|
||||
|
||||
define-host = hostlib.host-config;
|
||||
|
||||
in {
|
||||
network = {
|
||||
|
Loading…
Reference in New Issue
Block a user