dotfiles/configs/wsl/home.nix

22 lines
373 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-06-05 01:00:27 +02:00
nix = {
package = pkgs.nixVersions.latest;
};
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
2024-02-27 02:54:02 +01:00
}