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,4 +1,9 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
programs.git = { programs.git = {
@@ -6,12 +11,18 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
opencode opencode
python315 graphviz python315
graphviz
texliveFull texliveFull
rustup gcc go rustup
cmake gnumake gcc
trunk slumber go
nixfmt nil cmake
gnumake
trunk
slumber
nixfmt
nil
jdk jdk
shellcheck shellcheck
ansible ansible

View File

@@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
@@ -9,7 +14,8 @@
ripgrep ripgrep
coreutils coreutils
fd fd
aspell aspellDicts.en aspell
aspellDicts.en
zlib zlib
pkg-config pkg-config
libwebp libwebp

View File

@@ -1,7 +1,15 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
hardware.graphics.extraPackages = with pkgs; [ intel-vaapi-driver intel-media-driver ]; hardware.graphics.extraPackages = with pkgs; [
intel-vaapi-driver
intel-media-driver
];
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services.displayManager.gdm.enable = true; services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true; services.desktopManager.gnome.enable = true;

View File

@@ -1,8 +1,13 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
# Allow unfree packages # Allow unfree packages
nixpkgs.config = { nixpkgs.config = {
allowUnfree = true; allowUnfree = true;
packageOverrides = pkgs: { packageOverrides = pkgs: {
unstable = import <unstable> { unstable = import <unstable> {
@@ -11,14 +16,14 @@ nixpkgs.config = {
}; };
}; };
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
wget wget
ranger ranger
mpv ffmpeg mpv
ffmpeg
adw-gtk3 adw-gtk3
bitwarden-desktop bitwarden-desktop
chezmoi chezmoi
@@ -27,7 +32,8 @@ nixpkgs.config = {
hledger hledger
supersonic supersonic
libdrm libdrm
yt-dlp freetube yt-dlp
freetube
prismlauncher prismlauncher
nextcloud-client nextcloud-client
discord-canary discord-canary
@@ -44,5 +50,9 @@ nixpkgs.config = {
]; ];
programs.steam.enable = true; programs.steam.enable = true;
programs.firefox.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
];
} }