new formatting, nixvim is working

This commit is contained in:
Charlie Root 2024-05-22 14:29:45 +02:00
commit 0e22544a8a
88 changed files with 1994 additions and 1845 deletions

View file

@ -1,6 +1,11 @@
{ config, lib, inputs, pkgs, ... }:
with lib;
let
{
config,
lib,
inputs,
pkgs,
...
}:
with lib; let
username = config.modules.other.system.username;
cfg = config.modules.programs.steam;
in {
@ -16,6 +21,6 @@ in {
dedicatedServer.openFirewall = true;
gamescopeSession.enable = mkIf cfg.gamescope true;
};
home-manager.users.${username} = { };
home-manager.users.${username} = {};
};
}