add docker.nix
This commit is contained in:
parent
17bb2d39ef
commit
df098242f5
8 changed files with 32 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -46,5 +46,6 @@
|
|||
proton-apps.enable = true;
|
||||
firefox.enable = true;
|
||||
chromium.enable = true;
|
||||
gcc.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue