Compare commits
3 commits
35c13c5e10
...
3b9e0e0144
Author | SHA1 | Date | |
---|---|---|---|
3b9e0e0144 | |||
18fb4866d2 | |||
d217662e1d |
3 changed files with 26 additions and 7 deletions
30
flake.nix
30
flake.nix
|
@ -89,22 +89,38 @@
|
||||||
# but don't like that they're included >:(
|
# 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 = {
|
flake-utils = {
|
||||||
url = "github:numtide/flake-utils";
|
url = "github:numtide/flake-utils";
|
||||||
inputs.systems.follows = "nix-systems_default";
|
inputs.systems.follows = "nix-systems_default";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Ditto to github:nix-systems/default
|
/*
|
||||||
|
Used by:
|
||||||
|
- agenix
|
||||||
|
- flake-utils
|
||||||
|
*/
|
||||||
nix-systems_default = {
|
nix-systems_default = {
|
||||||
url = "github:nix-systems/default";
|
url = "github:nix-systems/default";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Ditto to github:edolstra/flake-compat
|
|
||||||
flake-compat = {
|
|
||||||
url = "github:edolstra/flake-compat";
|
|
||||||
};
|
|
||||||
|
|
||||||
}; # inputs
|
}; # inputs
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
} // lib.optionalAttrs (osConfig.wsl.enable or false) {
|
} // lib.optionalAttrs (osConfig.wsl.enable or false) {
|
||||||
# From Windows "%PATH%"
|
# From Windows "%PATH%"
|
||||||
"adb" = "adb.exe";
|
"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";
|
"caja" = "wsl-open";
|
||||||
"hactoolnet" = "hactoolnet.exe";
|
"hactoolnet" = "hactoolnet.exe";
|
||||||
"mpv" = "mpv.com";
|
"mpv" = "mpv.com";
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{
|
{
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
|
trusted-users = [ "whovian" ];
|
||||||
|
|
||||||
extra-substituters = [
|
extra-substituters = [
|
||||||
"https://cache.lix.systems"
|
"https://cache.lix.systems"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue