1
Fork 0
satellite/hosts/nixos/common/global/default.nix
Matei Adriel 15247fa82d
Many changes, but among other things:
- Use base16 colors for xmonad
- No more useless fish base16 theming
- Different wallpapers for each theme
2023-01-26 21:49:43 +01:00

33 lines
662 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/frappe.yaml";
nixpkgs = {
# Add all overlays defined in the overlays directory
overlays = builtins.attrValues outputs.overlays ++ [
inputs.neovim-nightly-overlay.overlay
];
config = {
allowUnfree = true;
};
};
}