formatted everything with nixfmt

This commit is contained in:
Gabriella Bere 2024-10-23 21:59:06 +01:00
parent 3675fbdcc1
commit b42a379322
20 changed files with 343 additions and 240 deletions

View file

@ -1,6 +1,13 @@
{ config, lib, pkgs, stablepkgs, ... }: {
{
config,
lib,
pkgs,
stablepkgs,
...
}:
{
# All packaged needed from nixos-unstable
environment.systemPackages =
environment.systemPackages =
(with pkgs; [
neovim # nano is installed by default
wget
@ -41,11 +48,11 @@
ardour
v4l-utils
libreoffice
])
])
++
++
(with stablepkgs; [
# librewolf
]);
(with stablepkgs; [
# librewolf
]);
}