The nixpad rabbit hole

This commit is contained in:
2025-12-30 07:07:10 +02:00
parent 6a40fb1f5a
commit adddfdd16d
12 changed files with 314 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
{ config, lib, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
wget
ranger
mpv ffmpeg
adw-gtk3
bitwarden-desktop
chezmoi
darkman
nextcloud-talk-desktop
hledger
supersonic
libdrm
yt-dlp
prismlauncher
nextcloud-client
discord-canary
firefox-gnome-theme
];
programs.steam.enable = true;
programs.firefox.enable = true;
fonts.packages = with pkgs; [ miracode ];
}