added nix formatting

This commit is contained in:
voidarclabs
2026-01-04 16:46:33 +00:00
parent c7b96e7d96
commit caf6b24398
3 changed files with 305 additions and 307 deletions

View File

@@ -1,45 +1,37 @@
{ config, lib, pkgs, inputs, ... }:
{
config,
lib,
pkgs,
inputs,
...
}:
{
networking.hostName = "HACKSTATION"; # Define your hostname.
networking.hostName = "HACKSTATION";
# Opengl and vulkan
hardware.graphics = {
enable = true;
enable32Bit = true;
};
# Opengl and vulkan
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-vaapi-driver
libva-vdpau-driver
];
};
services.displayManager = {
autoLogin.enable = true;
autoLogin.user = "user01";
sddm = {
enable = true;
};
};
services.displayManager.sddm = {
enable = true;
autoLogin.enable = true;
autoLogin.user = "user01";
};
services.getty.autologinUser = "user01";
# Catppuccin sddm theme
# (pkgs.catppuccin-sddm.override {
# flavor = "mocha";
# font = "Fira Mono Nerd Font";
# fontSize = "11";
# background = null;
# })
# Local User
users.users.user01 = {
extraGroups = [ ];
packages = with pkgs; [
# Ricing
# Terminal
# Apps
bottles
];
};
# Local User
users.users.user01 = {
extraGroups = [ ];
packages = with pkgs; [
bottles
ferdium
delfin
jellyfin-tui
];
};
}