Gnome: replace gnome console with blackbox

This commit is contained in:
Toast 2024-09-13 14:01:14 +02:00
parent eb7b34924a
commit 3a2bc2cda5
3 changed files with 12 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{...}: {
imports = [
./programs
./gnome.nix
];
}

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.gnome-terminal.enable = false;
environment.systemPackages = with pkgs; [
blackbox-terminal
];
}

View file

@ -0,0 +1,5 @@
{...}: {
imports = [
./blackbox.nix
];
}