mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-12 16:39:44 +00:00
formatter
This commit is contained in:
parent
0db029b748
commit
24ae1a8ace
1 changed files with 59 additions and 56 deletions
|
@ -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?
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue