This commit is contained in:
Tao Tien 2024-04-02 10:32:20 -07:00
parent be1cdd67c8
commit 13227fd29b
3 changed files with 16 additions and 16 deletions

View file

@ -89,12 +89,12 @@
# we do a lil anti-patterns https://github.com/ryantm/agenix?tab=readme-ov-file#builtinsreadfile-anti-pattern
# bootstrap by commenting out devices first and rebuild switch impurely
"nocomputer".id = builtins.readFile config.age.secrets.syncthing-NOcomputer.path;
# "nolaptop".id = builtins.readFile config.age.secrets.syncthing-NOlaptop.path;
"nolaptop".id = builtins.readFile config.age.secrets.syncthing-NOlaptop.path;
};
folders = let
devs = [
"nocomputer"
# "nolaptop"
"nolaptop"
];
in {
"sync" = {

View file

@ -13,8 +13,8 @@ in {
];
home.file.".cargo/config.toml".text = cargoConfig;
home.file = {
"autostart" = ./autostart;
home.file."autostart" = {
source = ./autostart;
recursive = true;
};