mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
58 lines
927 B
Nix
58 lines
927 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
username,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixos-wsl.nixosModules.wsl
|
|
|
|
../common
|
|
../../modules/nixos/virtualisation/docker.nix
|
|
];
|
|
|
|
tux.services.openssh.enable = true;
|
|
|
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
|
|
|
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;
|
|
};
|
|
|
|
environment.persistence."/persist" = {
|
|
enable = false;
|
|
};
|
|
|
|
home-manager.users.${username} = {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|