test
This commit is contained in:
parent
b4218189ad
commit
aa111c90a6
3 changed files with 14 additions and 11 deletions
|
@ -42,7 +42,6 @@
|
|||
(nmap "<C-o>" "<C-o>zz")
|
||||
(nmap "<C-i>" "<C-i>zz")
|
||||
|
||||
|
||||
# Insert Mode
|
||||
|
||||
];
|
||||
|
|
|
@ -44,12 +44,16 @@
|
|||
repo ? "nixpkgs",
|
||||
unfree ? false
|
||||
}:inputs.${repo}.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu system theme; };
|
||||
|
||||
pkgs = import inputs.${repo} {
|
||||
inherit system;
|
||||
config.allowUnfree = unfree;
|
||||
hostPlatform = system;
|
||||
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu system theme;
|
||||
pkgs = import inputs.${repo} {
|
||||
inherit system;
|
||||
config.allowUnfree = unfree;
|
||||
hostPlatform = system;
|
||||
pkgs-unstable = import inputs.nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = unfree;
|
||||
hostPlatform = system;
|
||||
};
|
||||
};
|
||||
|
||||
modules = [
|
||||
|
|
|
@ -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 = [
|
||||
pkgs.bitwarden
|
||||
pkgs.steam
|
||||
pkgs.lutris
|
||||
pkgs.vlc
|
||||
# unstable.vintagestory
|
||||
pkgs-unstable.vintagestory
|
||||
];
|
||||
|
||||
programs.steam = {
|
||||
|
|
Loading…
Reference in a new issue