Do some more rearranging and moving and accept risk on gamemode
This commit is contained in:
parent
c41543edcf
commit
02a284fe90
6 changed files with 21 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ config, lib, pkgs, jovian, ... }:
|
{ config, lib, pkgs, jovian, ... }:
|
||||||
{
|
{
|
||||||
imports = [ jovian.nixosModules.jovian ];
|
imports = [ jovian.nixosModules.default ];
|
||||||
|
|
||||||
options.system.steamdeck.enable = lib.mkEnableOption "Jovian NixOS environment";
|
options.system.steamdeck.enable = lib.mkEnableOption "Jovian NixOS environment";
|
||||||
|
|
||||||
|
@ -22,7 +22,10 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_jovian;
|
boot = {
|
||||||
|
kernelPackages = lib.mkForce pkgs.linuxPackages_jovian;
|
||||||
|
kernelParams = ["amd_pstate=active"];
|
||||||
|
};
|
||||||
|
|
||||||
programs.steam.extest.enable = true;
|
programs.steam.extest.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
./eza
|
./eza
|
||||||
./fastfetch
|
./fastfetch
|
||||||
./git
|
./git
|
||||||
|
./gpg
|
||||||
./lazygit
|
./lazygit
|
||||||
./ncmpcpp
|
./ncmpcpp
|
||||||
./neovim
|
./neovim
|
||||||
|
|
7
modules/home/programs/terminal/ssh/default.nix
Normal file
7
modules/home/programs/terminal/ssh/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
programs.ssh = {
|
||||||
|
enable = true;
|
||||||
|
addKeysToAgent = "yes";
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,7 +2,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./easyeffects
|
./easyeffects
|
||||||
./gpg
|
|
||||||
./mpd
|
./mpd
|
||||||
./playerctl
|
./playerctl
|
||||||
];
|
];
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
{
|
{
|
||||||
programs.gamemode = {
|
programs.gamemode = {
|
||||||
enable = config.system.desktop.enable;
|
enable = config.system.desktop.enable;
|
||||||
settings.general.renice = 10;
|
settings = {
|
||||||
|
general.renice = 10;
|
||||||
|
gpu = {
|
||||||
|
amd_performance_level = "high";
|
||||||
|
apply_gpu_optimisations = "accept-responsibility";
|
||||||
|
gpu_device = 0;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue