feat: enable NTFS mounting
This commit is contained in:
parent
7d3b6ec168
commit
734584db69
|
@ -37,6 +37,9 @@ in {
|
|||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# enable NTFS disk mounting
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
|
||||
# clean /tmp at each boot
|
||||
boot.cleanTmpDir = true;
|
||||
|
||||
|
@ -114,7 +117,6 @@ in {
|
|||
slurp
|
||||
waybar
|
||||
pamixer
|
||||
swaylock
|
||||
swayidle
|
||||
wl-clipboard
|
||||
|
||||
|
@ -313,6 +315,12 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
programs.swaylock = {
|
||||
settings = { };
|
||||
# enable = true;
|
||||
# package = pkgs.swaylock-effects;
|
||||
};
|
||||
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config = rec {
|
||||
|
|
Loading…
Reference in a new issue