Mangohud : Enable globally.
This commit is contained in:
parent
57af2b88df
commit
c9cd1711bf
|
@ -1,20 +1,5 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"applefonts": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": "nixpkgs"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1,
|
|
||||||
"narHash": "sha256-KbrC/id7KX3UsnL0jRu6WuKujzYvo5uDhLCpJhWgnRk=",
|
|
||||||
"path": "derivation/apple_font",
|
|
||||||
"type": "path"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"path": "derivation/apple_font",
|
|
||||||
"type": "path"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dotfiles": {
|
"dotfiles": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -369,7 +354,6 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"applefonts": "applefonts",
|
|
||||||
"dotfiles": "dotfiles",
|
"dotfiles": "dotfiles",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nvimAlign": "nvimAlign",
|
"nvimAlign": "nvimAlign",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
url = "git+https://git.voronind.com/voronind/linux.git";
|
url = "git+https://git.voronind.com/voronind/linux.git";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
applefonts.url = "path:derivation/apple_font";
|
applefonts.url = "git+file:.?dir=./.config/linux/system/derivation/apple_font";
|
||||||
|
|
||||||
# Nvim plugins.
|
# Nvim plugins.
|
||||||
nvimAlign = {
|
nvimAlign = {
|
||||||
|
|
|
@ -7,12 +7,16 @@
|
||||||
gradience
|
gradience
|
||||||
jellyfin
|
jellyfin
|
||||||
jetbrains.idea-community
|
jetbrains.idea-community
|
||||||
mangohud
|
|
||||||
obs-studio
|
obs-studio
|
||||||
onlyoffice-bin
|
onlyoffice-bin
|
||||||
tor-browser
|
tor-browser
|
||||||
];
|
];
|
||||||
|
|
||||||
|
hardware.opengl = {
|
||||||
|
extraPackages = with pkgs; [ mangohud ];
|
||||||
|
extraPackages32 = with pkgs; [ mangohud ];
|
||||||
|
};
|
||||||
|
|
||||||
# Special packages.
|
# Special packages.
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, inputs, ... }: let
|
{ pkgs, inputs, ... }: let
|
||||||
unit = {
|
unit = {
|
||||||
description = "Install/update dotfiles on startup.";
|
description = "Install/update dotfiles on startup.";
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" "default.target" ];
|
||||||
wants = [ "NetworkManager-wait-online.service" ];
|
wants = [ "NetworkManager-wait-online.service" ];
|
||||||
after = [ "NetworkManager-wait-online.service" ];
|
after = [ "NetworkManager-wait-online.service" ];
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
|
|
Reference in a new issue