fix some services

This commit is contained in:
Jacob Janzen 2024-09-26 18:11:43 -05:00
parent 5eb63082b5
commit 1c714dc335
5 changed files with 21 additions and 6 deletions

View file

@ -12,8 +12,6 @@
"nm-applet &"
"blueman-applet &"
"waybar"
"mako" # TODO: remove this
"emacs --daemon" # TODO: remove this
"swaybg -m fill -i ~/.wallpaper"
"mpdscribble"
];

View file

@ -14,8 +14,7 @@
home.packages = with pkgs; [
discord # not FOSS
emacs # TODO
fuzzel # TODO
fuzzel
htop
hyfetch
hyprshot
@ -25,7 +24,7 @@
pavucontrol
prismlauncher # minecraft
python3
swaybg # TODO
swaybg
texliveFull
];
}

View file

@ -2,12 +2,13 @@
{
imports = [
./emacs.nix
./mako.nix
./mpd.nix
./syncthing.nix
];
home.packages = with pkgs; [
mako # TODO
mpdscribble
];
}

View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.emacs = {
enable = true;
client.enable = true;
socketActivation.enable = true;
};
}

View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
services.mako = {
enable = true;
backgroundColor = "#ece0c9ff";
};
}