mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
misc changes
This commit is contained in:
parent
661de99fe8
commit
331a21e2e2
3 changed files with 9 additions and 11 deletions
|
|
@ -24,12 +24,10 @@ in {
|
||||||
config = mkMerge [
|
config = mkMerge [
|
||||||
(
|
(
|
||||||
mkIf (! cfg.gpuAcceleration.disable) {
|
mkIf (! cfg.gpuAcceleration.disable) {
|
||||||
hardware = {
|
hardware.opengl = {
|
||||||
opengl = {
|
enable = true;
|
||||||
enable = true;
|
driSupport = true;
|
||||||
driSupport = true;
|
driSupport32Bit = true;
|
||||||
driSupport32Bit = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
@ -41,8 +39,10 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
wireplumber.enable = true;
|
wireplumber.enable = true;
|
||||||
alsa.enable = true;
|
alsa = {
|
||||||
alsa.support32Bit = true;
|
enable = true;
|
||||||
|
support32Bit = true;
|
||||||
|
};
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ _: {pkgs, ...}: {
|
||||||
pkgs.alsa-utils #volume control
|
pkgs.alsa-utils #volume control
|
||||||
pkgs.xclip #commandline clipboard access
|
pkgs.xclip #commandline clipboard access
|
||||||
pkgs.bottom #view tasks
|
pkgs.bottom #view tasks
|
||||||
pkgs.bc #terminal calculator
|
|
||||||
pkgs.nix-tree #view packages
|
pkgs.nix-tree #view packages
|
||||||
pkgs.nix-output-monitor
|
pkgs.nix-output-monitor
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
VISUAL = "nvim";
|
VISUAL = "nvim";
|
||||||
PAGER = "page";
|
PAGER = "page";
|
||||||
SYSTEMD_PAGERSECURE = "true";
|
SYSTEMD_PAGERSECURE = "true";
|
||||||
TERMINAL = "st";
|
|
||||||
DIRENV_LOG_FORMAT = "";
|
DIRENV_LOG_FORMAT = "";
|
||||||
};
|
};
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
|
@ -57,7 +56,7 @@
|
||||||
execWheelOnly = true;
|
execWheelOnly = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
Defaults env_keep += "${builtins.concatStringsSep " " (builtins.attrNames environment.variables)}"
|
Defaults env_keep += "${builtins.concatStringsSep " " (builtins.attrNames environment.variables)}"
|
||||||
Defaults lecture = never
|
Defaults lecture = never
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue