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