Recreated nix files
This commit is contained in:
+301
-300
File diff suppressed because it is too large
Load Diff
@@ -712,8 +712,9 @@ We also add a devshell that makes editing this repository easier in emacs.
|
||||
<<flake-home-module>>
|
||||
catppuccin.nixosModules.catppuccin # theme
|
||||
|
||||
# end_script as a systemd service
|
||||
({ lib, config, pkgs, ... }: {
|
||||
systemd.user.services.endScript = lib.mkIf (lib.fileExists ./assets/scripts/end_script.sh) {
|
||||
systemd.user.services.endScript = lib.mkIf (builtins.pathExists ./assets/scripts/end_script.sh) {
|
||||
description = "Run end script after Home Manager";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "home-manager-activate.service" ];
|
||||
|
||||
@@ -76,8 +76,9 @@ in
|
||||
|
||||
catppuccin.nixosModules.catppuccin # theme
|
||||
|
||||
# end_script as a systemd service
|
||||
({ lib, config, pkgs, ... }: {
|
||||
systemd.user.services.endScript = lib.mkIf (lib.fileExists ./assets/scripts/end_script.sh) {
|
||||
systemd.user.services.endScript = lib.mkIf (builtins.pathExists ./assets/scripts/end_script.sh) {
|
||||
description = "Run end script after Home Manager";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "home-manager-activate.service" ];
|
||||
|
||||
Reference in New Issue
Block a user