init
This commit is contained in:
33
modules/system-packages.nix
Normal file
33
modules/system-packages.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{ 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
|
||||
swaybg whitesur-cursors copyq
|
||||
kdePackages.kwallet-pam
|
||||
brightnessctl
|
||||
libxkbcommon
|
||||
pavucontrol
|
||||
|
||||
kdePackages.partitionmanager
|
||||
kdePackages.polkit-kde-agent-1
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user