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