change wsl hostname to sirius

This commit is contained in:
2024-09-13 20:20:32 +05:30
parent d4f3e8ad6f
commit 257b108a7b
3 changed files with 4 additions and 4 deletions

55
hosts/sirius/default.nix Normal file
View File

@ -0,0 +1,55 @@
{
pkgs,
inputs,
username,
config,
...
}: {
imports = [
inputs.nixos-wsl.nixosModules.wsl
../common
../../modules/nixos/virtualisation/docker.nix
];
nixpkgs = {
config.cudaSupport = true;
hostPlatform = "x86_64-linux";
};
wsl = {
enable = true;
defaultUser = "${username}";
nativeSystemd = true;
useWindowsDriver = true;
};
networking.hostName = "sirius";
programs = {
ssh.startAgent = true;
zsh.enable = true;
nix-ld = {
enable = true;
libraries = config.hardware.graphics.extraPackages;
package = pkgs.nix-ld-rs;
};
dconf.enable = true;
};
services = {
ollama = {
enable = true;
acceleration = "cuda";
openFirewall = true;
host = "0.0.0.0";
port = 11434;
};
tailscale.enable = true;
};
fonts.packages = with pkgs; [(nerdfonts.override {fonts = ["FiraCode" "JetBrainsMono"];})];
system.stateVersion = "23.11";
}