formatting

This commit is contained in:
Henri Dohmen 2025-03-22 12:28:50 +01:00
parent e3e370c893
commit 43860609e1
22 changed files with 230 additions and 154 deletions

View file

@ -1,52 +1,50 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
environment.systemPackages = let
editors = with pkgs; [
vscode
emacs
jetbrains.gateway
jetbrains.rust-rover
];
environment.systemPackages =
let
editors = with pkgs; [
vscode
emacs
jetbrains.gateway
jetbrains.rust-rover
];
messengers = with pkgs; [
signal-desktop
element-desktop
zulip
vesktop
];
messengers = with pkgs; [
signal-desktop
element-desktop
zulip
vesktop
];
util = with pkgs; [
wireguard-tools
bitwarden
kitty
nixfmt-rfc-style
nil
];
util = with pkgs; [
wireguard-tools
bitwarden
kitty
nixfmt-rfc-style
nil
];
media = with pkgs; [
vlc
spotify
calibre
];
media = with pkgs; [
vlc
spotify
calibre
];
productivity = with pkgs; [
zotero
obsidian
];
productivity = with pkgs; [
zotero
obsidian
];
dev = with pkgs; [
rustup
python313
gcc
binutils
];
dev = with pkgs; [
rustup
python313
gcc
binutils
];
in editors
++ messengers
++ util
++ media
++ productivity
++ dev;
in
editors ++ messengers ++ util ++ media ++ productivity ++ dev;
virtualisation = {
docker.enable = true;