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,17 +1,19 @@
{ pkgs, ...}: { pkgs, ...}:
{ {
services.xserver.displayManager = { services.xserver = {
defaultSession = "hyprland"; displayManager = {
lightdm = { defaultSession = "hyprland";
enable = true; lightdm = {
greeters = {
slick = {
enable = true; enable = true;
greeters = {
slick = {
enable = true;
};
};
}; };
}; };
enable = true;
};
}; };
# EOF # EOF
} }