mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Added some automounting for thumb drives
This commit is contained in:
parent
afcb50393f
commit
6994093871
|
@ -22,6 +22,7 @@
|
||||||
../../system/security/firewall.nix
|
../../system/security/firewall.nix
|
||||||
../../system/security/firejail.nix
|
../../system/security/firejail.nix
|
||||||
../../system/security/openvpn.nix
|
../../system/security/openvpn.nix
|
||||||
|
../../system/security/automount.nix
|
||||||
../../system/style/stylix.nix
|
../../system/style/stylix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
7
system/security/automount.nix
Normal file
7
system/security/automount.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.devmon.enable = true;
|
||||||
|
services.gvfs.enable = true;
|
||||||
|
services.udisks2.enable = true;
|
||||||
|
}
|
|
@ -730,6 +730,8 @@
|
||||||
background-size: auto 100%;
|
background-size: auto 100%;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
services.udiskie.enable = true;
|
||||||
|
services.udiskie.tray = "always";
|
||||||
programs.swaylock = {
|
programs.swaylock = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in a new issue