major changes
This commit is contained in:
@@ -2,5 +2,13 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
glxinfo
|
||||
vulkan-tools
|
||||
lact
|
||||
];
|
||||
systemd.packages = with pkgs; [
|
||||
lact
|
||||
];
|
||||
systemd.services.lactd = {
|
||||
enable = true;
|
||||
wantedBy = ["multi-user.target"];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -5,5 +5,6 @@
|
||||
tldr
|
||||
jq
|
||||
btop
|
||||
rar
|
||||
];
|
||||
}
|
||||
|
||||
@@ -3,9 +3,4 @@
|
||||
enable = true;
|
||||
enable32Bit = true; # Crucial for 32-bit games
|
||||
};
|
||||
programs.corectrl = {
|
||||
enable = true;
|
||||
};
|
||||
systemd.packages = with pkgs; [corectrl];
|
||||
systemd.services.corectrl.wantedBy = ["multi-user.target"];
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
myConfig,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
hardware = {
|
||||
@@ -10,4 +11,10 @@
|
||||
powerOnBoot = true;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs;
|
||||
[
|
||||
]
|
||||
++ lib.optionals (myConfig.linux.logitech-hardware.enable == true) [
|
||||
solaar
|
||||
];
|
||||
}
|
||||
|
||||
+4
-1
@@ -1,4 +1,7 @@
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = [
|
||||
pkgs.pavucontrol
|
||||
];
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@
|
||||
users = {
|
||||
${myConfig.general.Username} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "networkmanager" "input"];
|
||||
extraGroups = ["wheel" "networkmanager" "input" "corectrl" "video"];
|
||||
initialHashedPassword = "$y$j9T$NHFtSwF4NJtEmgMjy4Xdg.$9WQltjEx3eEfZ7GbpGLW8lBhJtiXPOeIawrxdmx0.vB";
|
||||
useDefaultShell = true;
|
||||
packages = [
|
||||
|
||||
Reference in New Issue
Block a user