2024-01-24 00:19:32 +01:00
|
|
|
{ pkgs, config, inputs, ... }:
|
2024-01-24 00:13:37 +01:00
|
|
|
|
2024-01-24 07:52:31 +01:00
|
|
|
let
|
|
|
|
my-python-packages = ps: with ps; [
|
|
|
|
pandas
|
|
|
|
requests
|
|
|
|
];
|
|
|
|
in {
|
2024-01-24 00:13:37 +01:00
|
|
|
# Allow unfree packages
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
# List System Programs
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
wget curl git cmatrix lolcat neofetch htop btop libvirt
|
2024-01-24 01:49:00 +01:00
|
|
|
polkit_gnome lm_sensors unzip unrar libnotify eza
|
2024-01-27 08:03:09 +01:00
|
|
|
v4l-utils ydotool wl-clipboard socat cowsay lsd lshw
|
2024-01-24 00:13:37 +01:00
|
|
|
pkg-config meson hugo gnumake ninja go nodejs symbola
|
|
|
|
noto-fonts-color-emoji material-icons brightnessctl
|
2024-01-24 07:52:31 +01:00
|
|
|
toybox virt-viewer jetbrains.pycharm-community-bin
|
2024-02-06 09:26:07 +01:00
|
|
|
swappy ripgrep appimage-run
|
2024-01-24 07:52:31 +01:00
|
|
|
(pkgs.python3.withPackages my-python-packages)
|
2024-01-24 00:13:37 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
programs.steam.gamescopeSession.enable = true;
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
programs.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
|
|
xwayland.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.mtr.enable = true;
|
|
|
|
programs.gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
enableSSHSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
programs.virt-manager.enable = true;
|
|
|
|
}
|