Compare commits

...

3 commits

3 changed files with 26 additions and 7 deletions

View file

@ -89,22 +89,38 @@
# but don't like that they're included >:(
#########
# I don't like `flake-utils`, but so many things use it that I might as
# well only keep a single version of it.
/*
Used by:
- lix
- nixos-wsl
*/
flake-compat = {
url = "github:edolstra/flake-compat";
};
/*
Used by:
- lix-module
- ninfs
- Itself
- inputs.pyctr
- nixos-wsl
- xil
*/
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "nix-systems_default";
};
# Ditto to github:nix-systems/default
/*
Used by:
- agenix
- flake-utils
*/
nix-systems_default = {
url = "github:nix-systems/default";
};
# Ditto to github:edolstra/flake-compat
flake-compat = {
url = "github:edolstra/flake-compat";
};
}; # inputs

View file

@ -14,6 +14,7 @@
} // lib.optionalAttrs (osConfig.wsl.enable or false) {
# From Windows "%PATH%"
"adb" = "adb.exe";
"aaru6exe"="/mnt/c/Users/Whovian/Downloads/Games/Tools/aaru/v6.0.0-alpha9/aaru-6.0.0-alpha9_windows_x64/aaru.exe";
"caja" = "wsl-open";
"hactoolnet" = "hactoolnet.exe";
"mpv" = "mpv.com";

View file

@ -1,5 +1,7 @@
{
nix.settings = {
trusted-users = [ "whovian" ];
extra-substituters = [
"https://cache.lix.systems"
];