diff options
author | Alex Auvolat <alex@adnab.me> | 2023-06-20 12:39:35 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-20 12:39:35 +0200 |
commit | 8c5dacf828cf1514cea04424b63d0c29d99544c8 (patch) | |
tree | 06fe1bbe09ef05d8a7f85114a4d16e7166a22baf /nixos | |
parent | 9ff4fbb16f992fb9bf91cc590c7524c58545c59f (diff) | |
download | user-config-8c5dacf828cf1514cea04424b63d0c29d99544c8.tar.gz user-config-8c5dacf828cf1514cea04424b63d0c29d99544c8.zip |
kusanagi: add distrobox and printer driver
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/common.nix | 2 | ||||
-rw-r--r-- | nixos/kusanagi.nix | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/nixos/common.nix b/nixos/common.nix index a0b9b8f..658351e 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -67,7 +67,6 @@ in # Enable CUPS to print documents. services.printing.enable = true; - #services.printing.drivers = [ pkgs.cups-brother-hl1210w ]; # Enable sound. sound.enable = true; @@ -168,6 +167,7 @@ in dig inetutils file + distrobox alacritty firefox diff --git a/nixos/kusanagi.nix b/nixos/kusanagi.nix index 84a501d..dca07ec 100644 --- a/nixos/kusanagi.nix +++ b/nixos/kusanagi.nix @@ -57,6 +57,9 @@ docker-compose ]; + # Printer + services.printing.drivers = [ pkgs.cups-brother-hl1210w ]; + networking.firewall.allowedTCPPorts = [ 57890 # troop ]; |