Refactor programs
This commit is contained in:
parent
3de981c7dd
commit
6fd81e3a16
|
@ -10,6 +10,7 @@
|
|||
|
||||
../common/optional/key.nix
|
||||
|
||||
./programs
|
||||
./services
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
@ -51,12 +52,6 @@
|
|||
networkmanager.enable = true;
|
||||
};
|
||||
|
||||
programs = {
|
||||
zsh.enable = true;
|
||||
direnv.enable = true;
|
||||
adb.enable = true;
|
||||
};
|
||||
|
||||
# Use docker instead of podman for our containers.
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
|
|
12
nixos/fuchsia/programs/default.nix
Normal file
12
nixos/fuchsia/programs/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
zsh.enable = true;
|
||||
# Load and unload environment variables.
|
||||
direnv.enable = true;
|
||||
# Android debug bridge: communicate with devices.
|
||||
adb.enable = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in a new issue