add docker.nix

This commit is contained in:
Asaki Yuki 2026-04-13 20:10:50 +07:00
parent 17bb2d39ef
commit df098242f5
8 changed files with 32 additions and 6 deletions

View file

@ -1,4 +1,9 @@
{ lib, ... }:
{
lib,
libs,
pkgs,
...
}:
let
ENABLE_HDR = false;
in
@ -86,7 +91,10 @@ in
};
programs = {
terminal = "ghostty";
terminal = {
enable = true;
name = "ghostty";
};
obs-studio.enable = true;
nixcord.enable = true;
tmux.enable = true;

View file

@ -46,5 +46,6 @@
proton-apps.enable = true;
firefox.enable = true;
chromium.enable = true;
gcc.enable = true;
};
}