Format config

This commit is contained in:
2026-01-27 17:38:40 +00:00
parent de494a2a87
commit ec7ada6ade
4 changed files with 135 additions and 66 deletions

View File

@@ -3,10 +3,15 @@
# and in the NixOS manual (accessible by running 'nixos-help').
# man configuration.nix
{ config, pkgs, inputs, ... }:
{
config,
pkgs,
inputs,
...
}:
{
imports = [
imports = [
inputs.home-manager.nixosModules.default
];
@@ -63,7 +68,10 @@
users.users.trude = {
isNormalUser = true;
description = "TrudeEH";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [
"networkmanager"
"wheel"
];
packages = with pkgs; [ ];
};
@@ -98,7 +106,10 @@
programs.nix-ld.libraries = with pkgs; [
# Add missing dynamic libraries for unpackaged executables here.
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
# Steam and VR
programs.steam = {