fix some services
This commit is contained in:
parent
5eb63082b5
commit
1c714dc335
5 changed files with 21 additions and 6 deletions
|
@ -12,8 +12,6 @@
|
|||
"nm-applet &"
|
||||
"blueman-applet &"
|
||||
"waybar"
|
||||
"mako" # TODO: remove this
|
||||
"emacs --daemon" # TODO: remove this
|
||||
"swaybg -m fill -i ~/.wallpaper"
|
||||
"mpdscribble"
|
||||
];
|
||||
|
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -2,12 +2,13 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./emacs.nix
|
||||
./mako.nix
|
||||
./mpd.nix
|
||||
./syncthing.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
mako # TODO
|
||||
mpdscribble
|
||||
];
|
||||
}
|
||||
|
|
9
nixos/.flake/home/services/emacs.nix
Normal file
9
nixos/.flake/home/services/emacs.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
client.enable = true;
|
||||
socketActivation.enable = true;
|
||||
};
|
||||
}
|
8
nixos/.flake/home/services/mako.nix
Normal file
8
nixos/.flake/home/services/mako.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.mako = {
|
||||
enable = true;
|
||||
backgroundColor = "#ece0c9ff";
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue