Added sshfs to packages

This commit is contained in:
Alexandre 2026-02-18 15:24:28 +01:00
parent 1880b1d425
commit 051816c8f5
2 changed files with 11 additions and 8 deletions

View File

@ -7,6 +7,7 @@
vim vim
# Sytem utilities # Sytem utilities
ripgrep ripgrep
sshfs
wget wget
git git
tree tree

View File

@ -1,7 +1,8 @@
{ pkgs, ...}: { pkgs, ...}:
{ {
services.xserver.displayManager = { services.xserver = {
displayManager = {
defaultSession = "hyprland"; defaultSession = "hyprland";
lightdm = { lightdm = {
enable = true; enable = true;
@ -10,8 +11,9 @@
enable = true; enable = true;
}; };
}; };
}; };
}; };
enable = true;
};
# EOF # EOF
} }