chore: formatted

This commit is contained in:
2025-01-24 11:17:21 -08:00
parent 6a3387b8bd
commit 5c95d29a74
13 changed files with 147 additions and 54 deletions

View File

@@ -2,7 +2,13 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, meta, ... }:
{
config,
lib,
pkgs,
meta,
...
}:
{
imports = [ ../../modules/default.nix ];
@@ -13,8 +19,7 @@
hm.enable = true;
users.users.luca.shell = pkgs.zsh;
environment.systemPackages = with pkgs;
config.commonPackages ++ [ asciiquarium ];
environment.systemPackages = with pkgs; config.commonPackages ++ [ asciiquarium ];
system.stateVersion = "24.05";
}