switch sway #128

Merged
DarkKirb merged 5 commits from switch-sway into main 2022-12-31 11:04:05 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit a88ce9c19a - Show all commits

View file

@ -18,6 +18,7 @@ in {
./desktop-secrets.nix
./services/cups.nix
./services/docker.nix
./services/cifs.nix
];
fonts.fonts = with pkgs; [
noto-fonts

5
config/services/cifs.nix Normal file
View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
environment.systemPackages = [ pkgs.cifs-utils pkgs.lxqt.lxqt-policykit ];
networking.firewall.extraCommands = ''iptables -t raw -A OUTPUT -p udp -m udp --dport 137 -j CT --helper netbios-ns'';
services.gvfs.enable = true;
}