diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2026-07-28 18:41:18 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2026-07-28 18:41:18 -0600 |
| commit | 01135356b8c55c092d31c7197d6b923723117e55 (patch) | |
| tree | 29a293e850961c48d50307131535793f5a6911ee /machines/biski/default.nix | |
| parent | 42b6f324a63a66ed7eca4129c771e7a1e9d68fd6 (diff) | |
Diffstat (limited to 'machines/biski/default.nix')
| -rw-r--r-- | machines/biski/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/machines/biski/default.nix b/machines/biski/default.nix index 238ba66..f2b416e 100644 --- a/machines/biski/default.nix +++ b/machines/biski/default.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running `nixos-help`). -{ config, lib, ... }: +{ config, pkgs, lib, ... }: { imports = @@ -29,6 +29,10 @@ }; security.pam.sshAgentAuth.enable = true; + environment.systemPackages = with pkgs; [ + irssi + ]; + services.rsyslogd = { enable = true; extraConfig = '' |
