Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
yousiki committed Dec 12, 2024
1 parent 894c804 commit 462273a
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 37 deletions.
70 changes: 35 additions & 35 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion modules/nixos/basic/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@
};

# Enable VSCode server.
services.vscode-server.enable = true;
services.vscode-server = {
enable = true;
enableFHS = true;
installPath = "$HOME/.windsurf-server";
};

# Enable nix-ld.
programs.nix-ld.dev.enable = true;
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/system/filesys/cifs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ in {
};
}
'';
type = lib.types.attrsOf (lib.types.attrsOf lib.types.string);
type = lib.types.attrsOf (lib.types.attrsOf lib.types.str);
description = lib.mdDoc "The cifs file systems to mount.";
};
};
Expand Down

0 comments on commit 462273a

Please sign in to comment.