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
nixos_kde/modules/system_packages.nix
2026-01-12 22:00:09 +01:00

15 lines
258 B
Nix

{ pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
programs.firefox.enable = true;
programs.fish.enable = true;
environment.systemPackages = with pkgs; [
whitesur-cursors
kdePackages.partitionmanager
kdePackages.isoimagewriter
];
}