formatter

This commit is contained in:
Aditya 2024-04-04 10:41:19 +05:30
parent 0db029b748
commit 24ae1a8ace
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU

View file

@ -2,12 +2,15 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
# flake-overlays:
{ config, pkgs, lib, inputs, ... }:
{
imports =
[ # Include the results of the hardware scan.
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
];
@ -162,7 +165,7 @@ networking = {
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
#extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
# Enable CUPS to print documents.
@ -284,7 +287,8 @@ networking = {
kdePackages.ksystemstats
(waybar.overrideAttrs (oldAttrs: {
(
waybar.overrideAttrs (oldAttrs: {
mesonFlags = oldAttrs.mesonFlags ++ ["-Dexperimental=true"];
})
)
@ -344,5 +348,4 @@ networking = {
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
}