commit | 705d85bab78f3c435f61088caf14abb323229ffc | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon May 01 08:07:11 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Mon May 01 08:07:11 2023 +0000 |
tree | 5b41871f4970c9cc3c3d8dc410ebd3e62d5e4751 | |
parent | 475f6acd71fe19fa14d8081cec5de818c0417e7d [diff] |
Save the asciinema machine key
diff --git a/modules/asciinema.nix b/modules/asciinema.nix index 765027a..eff4c43 100644 --- a/modules/asciinema.nix +++ b/modules/asciinema.nix
@@ -1,3 +1,6 @@ -{ pkgs, ... }: { +{ pkgs, username, ... }: { home.home.packages = [ pkgs.asciinema ]; + config.environment.persistence."/nix/persist".users.${username}.directories = [ + ".config/asciinema" + ]; }