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

View file

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

View file

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

View file

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