From 498e2c3436284d6da1f82b945f49f81a76c36af9 Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Sun, 12 Nov 2023 01:22:05 -0500 Subject: [PATCH] minor changes to JWST, and added some programs --- hosts/JWST/configuration.nix | 5 +++-- users/tacocat/home.nix | 2 ++ users/tacocat/programs/default.nix | 1 + users/tacocat/programs/taskwarrior.nix | 5 +++++ 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 users/tacocat/programs/taskwarrior.nix diff --git a/hosts/JWST/configuration.nix b/hosts/JWST/configuration.nix index 0386d9e..759cfd7 100644 --- a/hosts/JWST/configuration.nix +++ b/hosts/JWST/configuration.nix @@ -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; [ diff --git a/users/tacocat/home.nix b/users/tacocat/home.nix index 20e70a0..c4ccfee 100644 --- a/users/tacocat/home.nix +++ b/users/tacocat/home.nix @@ -31,6 +31,8 @@ htop p7zip cachix + aria + killall ]; }; diff --git a/users/tacocat/programs/default.nix b/users/tacocat/programs/default.nix index b50513e..c24d056 100644 --- a/users/tacocat/programs/default.nix +++ b/users/tacocat/programs/default.nix @@ -2,6 +2,7 @@ imports = [ ./kitty.nix ./git.nix + ./taskwarrior.nix ]; programs.eza = { diff --git a/users/tacocat/programs/taskwarrior.nix b/users/tacocat/programs/taskwarrior.nix new file mode 100644 index 0000000..eb1c4f8 --- /dev/null +++ b/users/tacocat/programs/taskwarrior.nix @@ -0,0 +1,5 @@ +{...}: { + programs.taskwarrior = { + enable = true; + }; +}