Remove old scripts

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-21 22:28:20 +01:00
parent 586ed07ff0
commit 471bd8ca54
9 changed files with 0 additions and 86 deletions

View file

@ -1,7 +0,0 @@
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = [ pkgs.notes ];
};
}

View file

@ -1,13 +0,0 @@
{lib,...}:
{
flake.modules.homeManager.base =
{ config, ... }:
{
options.programs.notes.directory = lib.mkOption {
default = "${config.xdg.userDirs.documents}/notes";
type = lib.types.str;
};
config.home.sessionVariables.NOTES_DIRECTORY = config.programs.notes.directory;
};
}