This repository has been archived on 2026-01-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
deprecated_nixos/modules/system-packages.nix
T
2026-01-06 11:13:12 +01:00

34 lines
692 B
Nix

{ pkgs, inputs, ... }:
{
nixpkgs.overlays = [
inputs.mac-style-plymouth.overlays.default
];
nixpkgs.config.allowUnfree = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
fonts.packages = with pkgs; [
dejavu_fonts ibm-plex inter noto-fonts roboto fira fira-code
nerd-fonts.jetbrains-mono nerd-fonts.hack
newcomputermodern
];
environment.systemPackages = with pkgs; [
git vim wget curl helix
whitesur-cursors copyq
kdePackages.kwallet-pam
brightnessctl
libxkbcommon
pavucontrol
kdePackages.partitionmanager
kdePackages.polkit-kde-agent-1
];
}