mirror of
https://github.com/librephoenix/nixos-config
synced 2025-09-05 12:34:02 +05:30
Added some automounting for thumb drives
This commit is contained in:
parent
afcb50393f
commit
6994093871
3 changed files with 10 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue