minor changes to JWST, and added some programs

This commit is contained in:
Aria Nolan 2023-11-12 01:22:05 -05:00
parent d77b31a73e
commit 498e2c3436
4 changed files with 11 additions and 2 deletions

View file

@ -55,14 +55,14 @@
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
services.pipewire.enable = true;
services.pipewire.audio.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
# xdg-desktop-portal-gtk
xdg-desktop-portal-gtk
];
};
@ -90,6 +90,7 @@
];
programs.waybar.enable = true;
programs.nm-applet.enable = true;
environment = {
systemPackages = with pkgs; [

View file

@ -31,6 +31,8 @@
htop
p7zip
cachix
aria
killall
];
};

View file

@ -2,6 +2,7 @@
imports = [
./kitty.nix
./git.nix
./taskwarrior.nix
];
programs.eza = {

View file

@ -0,0 +1,5 @@
{...}: {
programs.taskwarrior = {
enable = true;
};
}