mirror of
https://git.gay/sneexy/nixos.git
synced 2026-01-11 13:13:15 -08:00
33 lines
636 B
Nix
33 lines
636 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
#
|
|
# enable flakes
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
environment.systemPackages = with pkgs; [
|
|
# git is required for flakes, and either way i use it
|
|
git
|
|
wget
|
|
curl
|
|
jq
|
|
imagemagick
|
|
ffmpeg
|
|
|
|
virt-manager
|
|
];
|
|
# set the default editor to neovim
|
|
environment.variables.EDITOR = "nvim";
|
|
|
|
# we like flatpaks
|
|
services.flatpak.enable = true;
|
|
|
|
# steam
|
|
programs.steam = {
|
|
enable = true;
|
|
};
|
|
|
|
# android debugging tools
|
|
programs.adb.enable = true;
|
|
}
|