This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-flake/hosts/wsl-dev/configuration.nix

16 lines
234 B
Nix

{ vars, inputs, ... }:
let
inherit (vars) username;
in
{
imports = [
../../modules
../../modules/wsl
../../modules/home-manager
];
home-manager.users.${username} = ./home.nix;
system.stateVersion = "23.11";
}