New Ollama.nix, the ai.nix did not work out. Added ZED-editor as separate app
This commit is contained in:
+324
-364
File diff suppressed because it is too large
Load Diff
@@ -1656,39 +1656,6 @@ in
|
|||||||
}
|
}
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** NCSway
|
|
||||||
Takes care of notifications
|
|
||||||
#+begin_src nix :tangle home/desktop/ncsway.nix :noweb tangle :mkdirp yes
|
|
||||||
{ config, pkgs, lib, flakeRoot, ... }:
|
|
||||||
let
|
|
||||||
repoConf = flakeRoot + "/assets/conf/desktop/notifications/swaync/config.json";
|
|
||||||
repoStyle = flakeRoot + "/assets/conf/desktop/notifications/swaync/style.css";
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home.packages = [
|
|
||||||
pkgs.swaynotificationcenter
|
|
||||||
pkgs.libnotify
|
|
||||||
];
|
|
||||||
# Ensure config directory exists in ~/.config
|
|
||||||
xdg.configFile."swaync/config.json".source = repoConf;
|
|
||||||
xdg.configFile."swaync/style.css".source = repoStyle;
|
|
||||||
# Start swaync automatically (systemd user service)
|
|
||||||
systemd.user.services.swaync = {
|
|
||||||
Unit = {
|
|
||||||
Description = "Sway Notification Center";
|
|
||||||
PartOf = [ "graphical-session.target" ];
|
|
||||||
};
|
|
||||||
Service = {
|
|
||||||
ExecStart = "${pkgs.swaynotificationcenter}/bin/swaync";
|
|
||||||
Restart = "always";
|
|
||||||
};
|
|
||||||
Install = {
|
|
||||||
WantedBy = [ "graphical-session.target" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
** Powermenu
|
** Powermenu
|
||||||
Creates a script for a powermenu
|
Creates a script for a powermenu
|
||||||
#+begin_src nix :tangle home/desktop/powermenu.nix :noweb tangle :mkdirp yes
|
#+begin_src nix :tangle home/desktop/powermenu.nix :noweb tangle :mkdirp yes
|
||||||
|
|||||||
Reference in New Issue
Block a user