- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
10 lines
151 B
Nix
10 lines
151 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
firewalld
|
|
firewalld-gui
|
|
];
|
|
networking.firewall.enable = true;
|
|
}
|