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