Files
dotfiles/nix/hosts/doloro-wsl/nixos.nix

29 lines
667 B
Nix

{ pkgs, lib, ... }:
{
networking.hostName = "doloro-wsl-laptop";
programs = {
nh = {
enable = true;
flake = "/home/doloro/dotfiles";
};
nix-ld = {
enable = true;
package = pkgs.nix-ld-rs;
};
};
virtualisation.podman = {
enable = true;
};
environment = {
localBinInPath = true;
systemPackages = with pkgs; [
git
home-manager
];
};
# stylix.base16Scheme = lib.mkForce "${pkgs.base16-schemes}/share/themes/tokyo-night-terminal-dark.yaml";
services.tailscale.enable = true;
networking.firewall.trustedInterfaces = [ "eth0" ];
systemd.services.firewall.enable = lib.mkForce true;
}