test
This commit is contained in:
parent
6be1a4a516
commit
11684f8883
2 changed files with 9 additions and 3 deletions
|
@ -52,11 +52,17 @@
|
|||
hostPlatform = system;
|
||||
};
|
||||
|
||||
pkgs-unstable = import inputs.nixpkgs-unstable {
|
||||
add-unstable-packages = final: _prev: {
|
||||
unstable = import nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = unfree;
|
||||
hostPlatform = system;
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
add-unstable-packages
|
||||
];
|
||||
|
||||
modules = [
|
||||
# Types are 'default', 'small', and 'minimal'
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{ config, lib, pkgs, unstable-pkgs, desktop, inputs, system, ... }: {
|
||||
{ config, lib, pkgs, unstable, desktop, inputs, system, ... }: {
|
||||
# Steam, Vintage Story areu nfree.
|
||||
environment.systemPackages = [
|
||||
pkgs.bitwarden
|
||||
pkgs.steam
|
||||
pkgs.lutris
|
||||
pkgs.vlc
|
||||
unstable-pkgs.vintagestory
|
||||
unstable.vintagestory
|
||||
];
|
||||
|
||||
programs.steam = {
|
||||
|
|
Loading…
Reference in a new issue