Add nix-flatpak flake input and modules/gaming.nix managing Flatpak remotes/packages declaratively: Bolt (Jagex launcher for RS3/OSRS) and Sober (Roblox). Add Heroic and hyperplay-ext, plus Proton-GE for Steam. Drops the old imperative runescape-launcher.
33 lines
960 B
Nix
33 lines
960 B
Nix
{
|
|
description = "NixOS configuration with Lanzaboote";
|
|
|
|
inputs = {
|
|
lanzaboote = {
|
|
url = "github:nix-community/lanzaboote/v1.0.0";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
anotherim = {
|
|
url = "git+https://dev.narayana.im/anotherim/anotherim-desktop.git?ref=dev";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.meow = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
inputs.lanzaboote.nixosModules.lanzaboote
|
|
inputs.sops-nix.nixosModules.sops
|
|
inputs.nix-flatpak.nixosModules.nix-flatpak
|
|
./configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|