ran alejandra formatter

This commit is contained in:
Forestcat 2023-11-26 21:33:06 +01:00
parent f30534ffa9
commit 48780cfeb8

View file

@ -1,12 +1,13 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
config,
pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
@ -72,8 +73,6 @@
hardware.pulseaudio.support32Bit = true;
hardware.pulseaudio.package = pkgs.pulseaudioFull;
# Define a user account. Don't forget to set a password with passwd.
users.users.forestcat = {
isNormalUser = true;
@ -123,7 +122,6 @@
pkgs.traceroute
pkgs.xorg.xinit
pkgs.nil
];
# Some programs need SUID wrappers, can be configured further or are
@ -163,7 +161,6 @@
# services.xserver.windowManager.awesome.enable = true;
services.xserver.desktopManager.xfce.enable = true;
# Enable Flatpack support
services.flatpak.enable = true;
@ -176,7 +173,6 @@
# xwayland.enable = true;
# };
environment.sessionVariables = {
WLR_NO_HARDWARE_CURSORS = "1"; # if mouse cursor invisible
NIXOS_OZONE_WL = "1"; # hint electron apps to use wayland
@ -187,13 +183,10 @@
nvidia.modesetting.enable = true;
};
# Enabling Pipewire for Audio Support
services.pipewire.enable = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
# Automatic Garbage collection
nix.gc = {
automatic = true;