From a91f3b318a2ee3161672c05e172cff8d90d79b40 Mon Sep 17 00:00:00 2001 From: Aly Sewelam Date: Wed, 11 Mar 2026 19:30:20 +0200 Subject: [PATCH] nixfmt... --- private_dot_config/nixos/configuration.nix | 29 +++++++++++----------- private_dot_config/nixos/i3-pkgs.nix | 11 +++++--- private_dot_config/nixos/sway-pkgs.nix | 15 +++++++---- 3 files changed, 33 insertions(+), 22 deletions(-) diff --git a/private_dot_config/nixos/configuration.nix b/private_dot_config/nixos/configuration.nix index f1c1d8a..031fb09 100644 --- a/private_dot_config/nixos/configuration.nix +++ b/private_dot_config/nixos/configuration.nix @@ -5,14 +5,14 @@ { config, pkgs, ... }: { - imports = - [ # Include the results of the hardware scan. - ./hardware-configuration.nix - ./packages.nix - ./emacs.nix - ./laptop.nix - ./dev-pkgs.nix - ]; + imports = [ + # Include the results of the hardware scan. + ./hardware-configuration.nix + ./packages.nix + ./emacs.nix + ./laptop.nix + ./dev-pkgs.nix + ]; # Bootloader. boot.loader.systemd-boot.enable = true; @@ -29,9 +29,9 @@ # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; nix.gc = { - automatic = true; - dates = "daily"; # or "daily" - options = "--delete-older-than 2"; + automatic = true; + dates = "daily"; # or "daily" + options = "--delete-older-than 2"; }; # Enable networking networking.networkmanager.enable = true; @@ -57,8 +57,6 @@ # Enable the X11 windowing system. services.xserver.enable = true; - - # Enable CUPS to print documents. services.printing.enable = true; @@ -79,7 +77,10 @@ users.users.linly = { isNormalUser = true; description = "Aly Sewelam"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ + "networkmanager" + "wheel" + ]; }; # Install firefox. diff --git a/private_dot_config/nixos/i3-pkgs.nix b/private_dot_config/nixos/i3-pkgs.nix index ec52ad7..d7944d6 100644 --- a/private_dot_config/nixos/i3-pkgs.nix +++ b/private_dot_config/nixos/i3-pkgs.nix @@ -1,10 +1,15 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { - + environment.systemPackages = with pkgs; [ dunst - flameshot + flameshot wezterm rofi playerctl diff --git a/private_dot_config/nixos/sway-pkgs.nix b/private_dot_config/nixos/sway-pkgs.nix index 0afce50..46cffdb 100644 --- a/private_dot_config/nixos/sway-pkgs.nix +++ b/private_dot_config/nixos/sway-pkgs.nix @@ -1,10 +1,15 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { environment.systemPackages = with pkgs; [ - zathura - wezterm - pwvucontrol - playerctl + zathura + wezterm + pwvucontrol + playerctl ]; }