This commit is contained in:
iFargle 2024-02-09 21:31:22 +09:00
parent 07aa07bb39
commit c4ddd2e714
2 changed files with 13 additions and 8 deletions

View file

@ -50,6 +50,11 @@
config.allowUnfree = unfree; config.allowUnfree = unfree;
hostPlatform = system; hostPlatform = system;
}; };
pkgs-unstable = import inputs.nixpkgs-unstable {
inherit system;
config.allowUnfree = unfree;
hostPlatform = system;
};
modules = [ modules = [
# Types are 'default', 'small', and 'minimal' # Types are 'default', 'small', and 'minimal'

View file

@ -1,11 +1,11 @@
{ config, lib, pkgs, desktop, inputs, system, ... }: { { config, lib, pkgs, pkgs-unstable, desktop, inputs, system, ... }: {
# Steam, Vintage Story areu nfree. # Steam, Vintage Story areu nfree.
environment.systemPackages = with pkgs; [ environment.systemPackages = [
bitwarden pkgs.bitwarden
steam pkgs.steam
lutris pkgs.lutris
vlc pkgs.vlc
inputs.nixpkgs-unstable.legacyPackages.${system}.vintagestory pkgs-unstable.intagestory
]; ];
programs.steam = { programs.steam = {