32 lines
547 B
Nix
32 lines
547 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# Allow unfree packages
|
|
nixpkgs.config = {
|
|
permittedInsecurePackages = [
|
|
"electron-24.8.6"
|
|
"electron-22.3.27"
|
|
];
|
|
};
|
|
# Fonts
|
|
fonts.packages = [
|
|
pkgs.ibm-plex
|
|
];
|
|
environment = {
|
|
# Systemwide installed packages
|
|
systemPackages = with pkgs; [
|
|
# System
|
|
gnome.gnome-control-center
|
|
gnome.nautilus
|
|
gnome.file-roller
|
|
swaybg
|
|
alacritty
|
|
gnome-text-editor
|
|
warp
|
|
tor-browser-bundle-bin
|
|
# Utils
|
|
popsicle
|
|
];
|
|
};
|
|
}
|