16 lines
303 B
Nix
Executable file
16 lines
303 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
|
|
];
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
}
|