Compare commits
No commits in common. "e844d29eaec24bb12f799bcabb458bb658813273" and "1167b979d9a71fb40264b4eeb8ba490c9ca792d3" have entirely different histories.
e844d29eae
...
1167b979d9
5 changed files with 4 additions and 43 deletions
|
|
@ -65,7 +65,6 @@ outputs = {nixpkgs, nixpkgs-unstable, agenix, home-manager, home-manager-unstabl
|
||||||
./roles/common
|
./roles/common
|
||||||
./roles/desktop
|
./roles/desktop
|
||||||
./roles/kde
|
./roles/kde
|
||||||
./roles/gaming
|
|
||||||
./machines/Archie
|
./machines/Archie
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -41,12 +41,12 @@
|
||||||
"Status" = "default";
|
"Status" = "default";
|
||||||
};
|
};
|
||||||
/*
|
/*
|
||||||
https://wiki.archlinux.org/title/Firefox#KDE_integration tells me to enable this,
|
Not sure what this does,
|
||||||
but strangely enough doing so makes firefox ask to be set as the default browser
|
but https://wiki.archlinux.org/title/Firefox#KDE_integration
|
||||||
every time you start it up, so I'll disable it
|
tells me to enable it
|
||||||
*/
|
*/
|
||||||
"widget.use-xdg-desktop-portal.mime-handler" = {
|
"widget.use-xdg-desktop-portal.mime-handler" = {
|
||||||
"Value" = 0;
|
"Value" = 1;
|
||||||
"Status" = "default";
|
"Status" = "default";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./steam.nix
|
|
||||||
./mangohud.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
{ config, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
# This does the same as enableSessionWide does on the mangohud config
|
|
||||||
environment.sessionVariables = { MANGOHUD = "1"; MANGOHUD_DLSYM = "1"; };
|
|
||||||
|
|
||||||
home-manager.users.toast = { config, ... }:
|
|
||||||
{
|
|
||||||
programs.mangohud = {
|
|
||||||
enable = true;
|
|
||||||
# TODO: fix envvars set by home manager not applying for some reason
|
|
||||||
# This only works for Vulkan, openGL programs still need the mangohud wrapper
|
|
||||||
enableSessionWide = true;
|
|
||||||
settings = {
|
|
||||||
preset = 4;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.steam = {
|
|
||||||
enable = true;
|
|
||||||
# Doubt that I'll use it, but I'll enable it anyways
|
|
||||||
remotePlay.openFirewall = true;
|
|
||||||
};
|
|
||||||
# Some linux native games (rise of the tomb raider) use alsa for sound
|
|
||||||
services.pipewire.alsa.enable = true;
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue