Update flake
This commit is contained in:
parent
c0070b691c
commit
6fb9b88db0
5 changed files with 68 additions and 80 deletions
|
|
@ -1,16 +0,0 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
security.rtkit.enable = true;
|
||||
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa = {
|
||||
enable = true;
|
||||
support32Bit = true;
|
||||
};
|
||||
pulse.enable = true;
|
||||
};
|
||||
|
||||
programs.noisetorch.enable = true;
|
||||
}
|
||||
|
|
@ -5,7 +5,6 @@
|
|||
disko.nixosModules.default
|
||||
hardware.nixosModules.asus-zephyrus-ga402
|
||||
../../common
|
||||
./audio.nix
|
||||
./configuration.nix
|
||||
./device.nix
|
||||
./disko.nix
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
usr = config.constants.userName;
|
||||
in
|
||||
{
|
||||
hardware = {
|
||||
bluetooth.enable = true;
|
||||
|
|
@ -10,13 +13,20 @@
|
|||
libvdpau-va-gl
|
||||
];
|
||||
};
|
||||
openrazer = {
|
||||
enable = true;
|
||||
users = [ usr ];
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
adb.enable = true;
|
||||
kdeconnect.enable = true;
|
||||
noisetorch.enable = true;
|
||||
};
|
||||
|
||||
security.rtkit.enable = true;
|
||||
|
||||
services = {
|
||||
automatic-timezoned.enable = true;
|
||||
avahi = {
|
||||
|
|
@ -25,8 +35,16 @@
|
|||
openFirewall = true;
|
||||
};
|
||||
fwupd.enable = true;
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa = {
|
||||
enable = true;
|
||||
support32Bit = true;
|
||||
};
|
||||
pulse.enable = true;
|
||||
};
|
||||
printing.enable = true;
|
||||
};
|
||||
|
||||
users.users.${config.constants.userName}.extraGroups = [ "adbusers" ];
|
||||
users.users.${usr}.extraGroups = [ "adbusers" ];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ let usr = config.constants.userName; in {
|
|||
nvtop-amd
|
||||
picard
|
||||
qbittorrent
|
||||
razergenie
|
||||
sweet-nova
|
||||
tauon
|
||||
telegram-desktop
|
||||
|
|
@ -91,7 +92,7 @@ let usr = config.constants.userName; in {
|
|||
easyeffects.enable = true;
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "qt";
|
||||
pinentryPackage = pkgs.pinentry-qt;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue