This commit is contained in:
iFargle 2024-02-10 10:13:46 +09:00
parent b4218189ad
commit aa111c90a6
3 changed files with 14 additions and 11 deletions

View file

@ -41,10 +41,9 @@
# Center cursor when jumping foward or back # Center cursor when jumping foward or back
(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
]; ];
options = { options = {

View file

@ -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 = [

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 = [ 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 = {