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-o>" "<C-o>zz")
|
||||||
(nmap "<C-i>" "<C-i>zz")
|
(nmap "<C-i>" "<C-i>zz")
|
||||||
|
|
||||||
|
|
||||||
# Insert Mode
|
# Insert Mode
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -44,12 +44,16 @@
|
||||||
repo ? "nixpkgs",
|
repo ? "nixpkgs",
|
||||||
unfree ? false
|
unfree ? false
|
||||||
}:inputs.${repo}.lib.nixosSystem {
|
}:inputs.${repo}.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu system theme; };
|
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu system theme;
|
||||||
|
|
||||||
pkgs = import inputs.${repo} {
|
pkgs = import inputs.${repo} {
|
||||||
inherit system;
|
inherit system;
|
||||||
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 = [
|
||||||
|
|
|
@ -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 = [
|
environment.systemPackages = [
|
||||||
pkgs.bitwarden
|
pkgs.bitwarden
|
||||||
pkgs.steam
|
pkgs.steam
|
||||||
pkgs.lutris
|
pkgs.lutris
|
||||||
pkgs.vlc
|
pkgs.vlc
|
||||||
# unstable.vintagestory
|
pkgs-unstable.vintagestory
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
|
|
Loading…
Reference in a new issue