formatted

This commit is contained in:
2025-03-18 03:33:27 -05:00
parent 9c2e5587cf
commit e9c321b8e2
15 changed files with 885 additions and 699 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, customPackageOverlay, modulesPath, ... }:
{
pkgs,
customPackageOverlay,
modulesPath,
...
}:
let
custom-fonts = import ../../fonts { inherit pkgs; };
@@ -34,7 +39,6 @@ in
experimental-features = nix-command flakes
'';
nixpkgs.overlays = [
customPackageOverlay
];
@@ -46,7 +50,10 @@ in
isNormalUser = true;
home = "/home/deepak";
description = "Deepak Mallubhotla";
extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user.
extraGroups = [
"wheel"
"networkmanager"
]; # Enable sudo for the user.
shell = pkgs.zsh;
};
@@ -65,7 +72,7 @@ in
# Fix of WSL issue
environment.noXlibs = false;
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
@@ -73,10 +80,9 @@ in
custom-fonts.custom-fonts
];
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-qt;
pinentryPackage = pkgs.pinentry-qt;
enableSSHSupport = true;
};
@@ -85,5 +91,4 @@ in
# Optional (default: 41641):
services.tailscale.port = 62532;
}