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

@ -49,7 +49,12 @@
inherit system;
config.allowUnfree = unfree;
hostPlatform = system;
};
};
pkgs-unstable = import inputs.nixpkgs-unstable {
inherit system;
config.allowUnfree = unfree;
hostPlatform = system;
};
modules = [
# 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.
environment.systemPackages = with pkgs; [
bitwarden
steam
lutris
vlc
inputs.nixpkgs-unstable.legacyPackages.${system}.vintagestory
environment.systemPackages = [
pkgs.bitwarden
pkgs.steam
pkgs.lutris
pkgs.vlc
pkgs-unstable.intagestory
];
programs.steam = {