nixfmt did its thing

This commit is contained in:
2026-03-03 15:57:59 +02:00
parent 547b442eaa
commit cd83f432cb
4 changed files with 87 additions and 52 deletions

View File

@@ -1,8 +1,13 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
# Allow unfree packages
nixpkgs.config = {
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import <unstable> {
@@ -11,38 +16,43 @@ nixpkgs.config = {
};
};
# 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 freetube
prismlauncher
nextcloud-client
discord-canary
firefox-gnome-theme
gimp
less
unzip
zip
file
man-pages
man-pages-posix
libreoffice-fresh
ledger
vim
wget
ranger
mpv
ffmpeg
adw-gtk3
bitwarden-desktop
chezmoi
darkman
nextcloud-talk-desktop
hledger
supersonic
libdrm
yt-dlp
freetube
prismlauncher
nextcloud-client
discord-canary
firefox-gnome-theme
gimp
less
unzip
zip
file
man-pages
man-pages-posix
libreoffice-fresh
ledger
];
programs.steam.enable = true;
programs.firefox.enable = true;
fonts.packages = with pkgs; [ noto-fonts noto-fonts-cjk-sans miracode ];
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk-sans
miracode
];
}