dotfiles/configs/wsl/home.nix

16 lines
259 B
Nix
Raw Normal View History

2024-02-27 02:54:02 +01:00
{ ... }:
2024-02-27 02:54:02 +01:00
{
imports = [ ./../../home-manager/modules/machine.nix ];
2024-02-27 02:54:02 +01:00
machine = {
username = "thilo";
isGeneric = true;
isGnome = false;
noiseSuppression.enable = false;
isGraphical = false;
};
2024-03-24 14:25:13 +01:00
nixpkgs.config.allowUnfree = true;
2024-02-27 02:54:02 +01:00
}