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

36 lines
625 B
Nix
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
lib,
pkgs,
config,
inputs,
...
}: {
imports = [
../configuration.nix
];
services.xserver.enable = true;
environment.systemPackages = with pkgs; [
sublime
vlc
];
myModules.desktop.enable = false;
myModules.plasma.enable = false;
imalison.nixOverlay.enable = false;
myModules.wsl.enable = true;
networking.hostName = "ryzen-shine-wsl";
myModules.hostIdentity = {
emoticon = "";
tmux.background = "#f97316";
};
wsl.defaultUser = "imalison";
system.stateVersion = "22.05";
home-manager.sharedModules = [
{
home.stateVersion = "22.05";
}
];
}