2023-01-10 02:38:06 +01:00
|
|
|
# Configuration pieces included on all (nixos) hosts
|
|
|
|
{ inputs, outputs, ... }: {
|
|
|
|
imports = [
|
|
|
|
inputs.agenix.nixosModule
|
|
|
|
# inputs.impermanence.nixosModule
|
|
|
|
|
|
|
|
./nix.nix
|
|
|
|
./openssh.nix
|
|
|
|
./fish.nix
|
|
|
|
./locale.nix
|
2023-01-10 16:05:48 +01:00
|
|
|
./wireless
|
2023-01-10 02:38:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
# Add all overlays defined in the overlays directory
|
|
|
|
overlays = builtins.attrValues outputs.overlays ++ [
|
|
|
|
inputs.neovim-nightly-overlay.overlay
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|