nixcfg/common/desktop/core.nix
2025-06-16 04:17:13 -04:00

21 lines
372 B
Nix
Executable file

{ config, pkgs, system, lib, inputs, ... }:
{
environment.systemPackages = with pkgs; [
#ghostty
kitty
vscode
inputs.zen-browser.packages."${system}".default
fastfetch
hyfetch
sway-contrib.grimshot
discord
pamixer
];
fonts.packages = [
pkgs.nerd-fonts.fira-code
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}