Fix: Add missing elipses

This commit is contained in:
Joey Hafner 2025-01-31 11:15:47 -08:00
parent ba589ef42a
commit 653a8b548a
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, sys }: {
{ pkgs, sys, ... }: {
virtualisation.docker = {
enable = true;
rootless.enable = true;

View File

@ -1,4 +1,4 @@
{ pkgs }: let
{ pkgs, ... }: let
iqn = "iqn.2020-03.net.jafner:fighter";
portals = {
barbarian = {

View File

@ -1,4 +1,4 @@
{ sys, pkgs }: {
{ sys, pkgs, ... }: {
users.users."${sys.username}".shell = pkgs.${sys.shellPackage};
programs."${sys.shellPackage}".enable = true;
home-manager.users."${sys.username}" = {