dotfiles-nix/hosts/nabro/configuration.nix

19 lines
335 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
];
networking.hostName = "nabro";
# Enable host-specific feature branches (dendrites)
dotfiles = {
core.enable = true;
user.enable = true;
desktop.enable = true;
dev.enable = true;
shell.enable = true;
};
}