regenerated age keys to use leylas credentials
This commit is contained in:
parent
d6ca7d5a60
commit
a18d2d373a
|
@ -1,7 +1,7 @@
|
||||||
keys:
|
keys:
|
||||||
- &primary age1y98w2zgrc8f8l2sw632g697nqkcudvsknjmm85ajehpnnjtvvv6sx5670e
|
- &leyla age15ga3jmn2mqtlgwwtdcdh6l5vdx6um9aftrkexxfyue6xvcqapqusle75jh
|
||||||
creation_rules:
|
creation_rules:
|
||||||
- path_regex: secrets/secrets.yaml$
|
- path_regex: secrets/secrets.yaml$
|
||||||
key_groups:
|
key_groups:
|
||||||
- age:
|
- age:
|
||||||
- *primary
|
- *leyla
|
||||||
|
|
|
@ -14,10 +14,12 @@
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs:
|
outputs = { self, nixpkgs, ... }@inputs:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
forEachSystem = nixpkgs.lib.genAttrs [ "x86_64-linux" ];
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
forEachPkgs = lambda: forEachSystem (system: lambda nixpkgs.legacyPackages.${system});
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
packages = forEachPkgs (pkgs: import ./pkgs { inherit pkgs; });
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
horizon = nixpkgs.lib.nixosSystem {
|
horizon = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs;};
|
specialArgs = {inherit inputs;};
|
||||||
|
|
4
pkgs/default.nix
Normal file
4
pkgs/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
pkgs: {
|
||||||
|
# yuzu-clone = pkgs.callPackage ./yuzo { };
|
||||||
|
# citra-clone = pkgs.callPackage ./citra { };
|
||||||
|
}
|
|
@ -71,11 +71,10 @@ in
|
||||||
(lib.mkIf cfg.hasViaKeyboard via)
|
(lib.mkIf cfg.hasViaKeyboard via)
|
||||||
|
|
||||||
# gaming
|
# gaming
|
||||||
# steam
|
|
||||||
# emulators
|
# emulators
|
||||||
# nintendo
|
# nintendo
|
||||||
# TODO: replace this with self hosted flake
|
# TODO: replace this with self hosted flake
|
||||||
(lib.mkIf cfg.hasGPU yuzu-mainline) # Switch Emulator
|
# (lib.mkIf cfg.hasGPU yuzu-mainline) # Switch Emulator
|
||||||
# TODO: replace this with self hosted flake
|
# TODO: replace this with self hosted flake
|
||||||
# citra-canary # 3DS emulator
|
# citra-canary # 3DS emulator
|
||||||
(lib.mkIf cfg.hasGPU cemu) # Wii-U emulator
|
(lib.mkIf cfg.hasGPU cemu) # Wii-U emulator
|
||||||
|
@ -86,9 +85,9 @@ in
|
||||||
vbam # Game Boy Advanced Emulator
|
vbam # Game Boy Advanced Emulator
|
||||||
fceux # NES Emulator
|
fceux # NES Emulator
|
||||||
# play station
|
# play station
|
||||||
pcsxr # PS1 Emulator
|
|
||||||
pcsx2 # PS2 Emulator
|
|
||||||
rpcs3 # PS3 Emulator
|
rpcs3 # PS3 Emulator
|
||||||
|
pcsx2 # PS2 Emulator
|
||||||
|
pcsxr # PS1 Emulator
|
||||||
# TODO: more play station emulators here when they come out
|
# TODO: more play station emulators here when they come out
|
||||||
#misc
|
#misc
|
||||||
stella # Atari 2600 Emulator
|
stella # Atari 2600 Emulator
|
||||||
|
|
Loading…
Reference in a new issue