Gui Reorg and More Programs

- Gui config reorganization
- Enable picom for dwm
- Install some utilities like arandr, autorandr, and unclutter-xfixes
  for dwm
- Add nerdfonts for FiraCode
- Remove conditional imports list syntax
- Add audio tools like playerctl and pavucontrol
- Enable polkit and add GNOME polkit
- Add more media programs like freecad, audacity, ani-cli, and calibre
- Add flameshot
This commit is contained in:
Sravan Balaji
2024-03-28 20:10:50 -04:00
parent 57ae9837a8
commit 7db963f519
16 changed files with 78 additions and 44 deletions

View File

@@ -11,4 +11,8 @@
pulse.enable = true;
jack.enable = true;
};
environment.systemPackages = with pkgs; [
playerctl
pavucontrol
];
}

View File

@@ -1,6 +1,10 @@
{ config, lib, pkgs, ... }:
{
hardware.bluetooth.enable = true;
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
}