summaryrefslogtreecommitdiff
path: root/modules/nixos/system-packages.nix
blob: 1a53638b00de88e03cddda2e39f7779fa96de8d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ pkgs, ...}: {
  programs.partition-manager.enable = true;
  environment.systemPackages = with pkgs; [
    #For root
    nix-tree
    nushell
    bat
    helix
    wget
    unzip
    git
    wl-clipboard
    pciutils
    # For gaming
    # r2modman
    #For hyprland
    waybar
    #For sway
    alacritty # gpu accelerated terminal
    dbus-sway-environment
    configure-gtk
    wayland
    waybar
    xdg-utils # for opening default programs when clicking links
    glib # gsettings
    dracula-theme # gtk theme
    gnome3.adwaita-icon-theme  # default gnome cursors
    swaylock
    swayidle
    grim # screenshot functionality
    slurp # screenshot functionality
    bemenu # wayland clone of dmenu
    mako # notification system developed by swaywm maintainer
    wdisplays # tool to configure displays
    wofi
    (writeShellScriptBin "rofi" "exec -a $0 ${wofi}/bin/wofi $@") #Lets qutebrowser select passwords
  ];
}