9eeb459372
- FOSDEM wifi - Started trying to use eww (I think I added a base16 theming system?) - Custom exa aliases!
33 lines
661 B
Nix
33 lines
661 B
Nix
# Configuration pieces included on all (nixos) hosts
|
|
{ inputs, outputs, lib, ... }: {
|
|
imports = [
|
|
inputs.agenix.nixosModule
|
|
inputs.base16.nixosModule
|
|
# inputs.impermanence.nixosModule
|
|
|
|
./nix.nix
|
|
./openssh.nix
|
|
./fish.nix
|
|
./locale.nix
|
|
./wireless
|
|
];
|
|
|
|
age.identityPaths = [
|
|
"/etc/ssh/ssh_host_ed25519_key"
|
|
];
|
|
|
|
scheme = lib.mkDefault "${inputs.catppuccin-base16}/base16/latte.yaml";
|
|
|
|
nixpkgs = {
|
|
# Add all overlays defined in the overlays directory
|
|
overlays = builtins.attrValues outputs.overlays ++ [
|
|
inputs.neovim-nightly-overlay.overlay
|
|
];
|
|
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
}
|