os/shared/home/gui/default.nix

16 lines
156 B
Nix
Raw Normal View History

2023-05-22 00:45:36 +02:00
{ pkgs, ... }:
2023-05-21 21:15:04 +02:00
{
imports = [
./sway.nix
./term.nix
];
2023-05-22 00:45:36 +02:00
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
fira-code
];
2023-05-21 21:15:04 +02:00
}