fixed a typo in hyprland.nix + other small tasks

This commit is contained in:
martyTF 2026-01-03 21:32:13 +01:00
parent fbbfd597d5
commit 30868c04bd
18 changed files with 148 additions and 7 deletions

View file

@ -0,0 +1,12 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [
./sshfs.nix
];
}

View file

@ -0,0 +1,28 @@
{
config,
lib,
pkgs,
...
}:
{
options = {
};
config = {
programs.sftpman = {
enable = true;
mounts = {
marty-server = {
host = "marty-server";
user = "marty";
mountOptions = [
"/mnt/Server"
];
mountPoint = "/";
};
};
package = pkgs.sshfs;
defaultSshKey = "~/.ssh/id_ed25519";
};
};
}