mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
37 lines
652 B
Nix
37 lines
652 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
firefox
|
|
brave
|
|
gimp
|
|
mpv
|
|
libreoffice
|
|
tdesktop
|
|
pavucontrol
|
|
gnome3.dconf-editor
|
|
glxinfo
|
|
steam-run
|
|
discord
|
|
|
|
(vscode-with-extensions.override {
|
|
vscode = vscodium;
|
|
vscodeExtensions = with pkgs.vscode-extensions; [
|
|
bbenoist.Nix
|
|
ms-python.python
|
|
ms-vscode.cpptools
|
|
ms-azuretools.vscode-docker
|
|
];
|
|
})
|
|
|
|
];
|
|
|
|
services.xserver.deviceSection = ''
|
|
Option "VariableRefresh" "true"
|
|
'';
|
|
|
|
programs.steam.enable = true;
|
|
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
boot.loader.timeout = null;
|
|
}
|