meta: Rename shared.nix to default.nix

This should make it easier to tell that this is the default
configuration inherited by all containers.
This commit is contained in:
Donovan Glover 2024-04-06 22:46:47 -04:00
parent ba10f28513
commit ec496e1a69
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 4 additions and 3 deletions

View File

@ -22,8 +22,9 @@
};
environment = {
defaultPackages = [ ];
variables.TERM = "xterm-kitty";
variables = {
TERM = "xterm-kitty";
};
sessionVariables = {
WAYLAND_DISPLAY = "wayland-1";

View File

@ -57,7 +57,7 @@ in
config = { lib, pkgs, ... }: {
imports = [
../containers/shared.nix
../containers
../containers/wine.nix
];
};