Files
dotfiles/nixos/machines/ryzen-shine-wsl.nix

27 lines
523 B
Nix
Raw Normal View History

2026-02-03 20:30:39 -08:00
{ lib, pkgs, config, inputs, ... }:
2025-01-01 05:27:40 +00:00
{
imports = [
../configuration.nix
];
services.xserver.enable = true;
environment.systemPackages = with pkgs; [
sublime
vlc
];
myModules.desktop.enable = false;
myModules.plasma.enable = false;
2025-01-01 05:27:40 +00:00
imalison.nixOverlay.enable = false;
myModules.wsl.enable = true;
2025-01-01 05:27:40 +00:00
networking.hostName = "ryzen-shine-wsl";
wsl.defaultUser = "imalison";
system.stateVersion = "22.05";
2026-02-03 20:30:39 -08:00
home-manager.sharedModules = [
{
home.stateVersion = "22.05";
}
];
2025-01-01 05:27:40 +00:00
}