1

lint: nix fmt

This commit is contained in:
Himadri Bhattacharjee
2024-04-13 13:46:47 +05:30
parent 3747e516da
commit 8dd9d91f4f
8 changed files with 96 additions and 85 deletions

View File

@@ -12,8 +12,8 @@
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows= "nixpkgs";
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};

View File

@@ -1,4 +1,6 @@
{ config,pkgs, ...}: {home.packages = with pkgs; [
hyperfine
linuxPackages_latest.perf
];}
{ config, pkgs, ... }: {
home.packages = with pkgs; [
hyperfine
linuxPackages_latest.perf
];
}

View File

@@ -104,15 +104,16 @@
xkb.layout = "us";
xkb.variant = "";
displayManager = {
gdm.enable = true;
autoLogin.enable = true;
autoLogin.user = "h";
};
displayManager.gdm.enable = true;
excludePackages = [ pkgs.xterm ];
desktopManager.xterm.enable = false;
videoDrivers = [ "nvidia" ];
};
displayManager.autoLogin = {
enable = true;
user = "h";
};
};
# Enable touchpad support (enabled default in most desktopManager).
@@ -132,43 +133,43 @@
description = "Himadri Bhattacharjee";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
broot
fd
ffmpeg-full
file
fractal
gh
gimp
gnome.gnome-boxes
gnome-secrets
go
gopls
i2p
jellyfin-media-player
jq
just
kdenlive
krita
lazygit
libreoffice-fresh
librewolf
libvirt
mariadb
mpv
nil
nitch
ollama
openvpn
pkg-config
qemu
qrencode
signal-desktop
tor-browser-bundle-bin
ungoogled-chromium
unrar
yt-dlp
zellij
];
broot
fd
ffmpeg-full
file
fractal
gh
gimp
gnome.gnome-boxes
gnome-secrets
go
gopls
i2p
jellyfin-media-player
jq
just
kdenlive
krita
lazygit
libreoffice-fresh
librewolf
libvirt
mariadb
mpv
nil
nitch
ollama
openvpn
pkg-config
qemu
qrencode
signal-desktop
tor-browser-bundle-bin
ungoogled-chromium
unrar
yt-dlp
zellij
];
shell = pkgs.fish;
};

View File

@@ -1,18 +1,20 @@
# Tools for pentesting and playing CTFs
{ config, pkgs, ... }: {home.packages = with pkgs; [
bettercap
ffuf
gau
ghidra
gitleaks
hashcat
hcxtools
nikto
nmap
patchelf
# pwntools
feroxbuster
rustscan
sqlmap
s3scanner
];}
{ config, pkgs, ... }: {
home.packages = with pkgs; [
bettercap
ffuf
gau
ghidra
gitleaks
hashcat
hcxtools
nikto
nmap
patchelf
# pwntools
feroxbuster
rustscan
sqlmap
s3scanner
];
}

View File

@@ -1,5 +1,7 @@
{ config,pkgs, ...}: {home.packages = with pkgs; [
lutris
wine
dxvk
];}
{ config, pkgs, ... }: {
home.packages = with pkgs; [
lutris
wine
dxvk
];
}

View File

@@ -1,5 +1,7 @@
{ config,pkgs, ...}: {home.packages = with pkgs; [
glow
marksman
rnote
];}
{ config, pkgs, ... }: {
home.packages = with pkgs; [
glow
marksman
rnote
];
}

View File

@@ -1,9 +1,11 @@
{ config, pkgs, ... }: {home.packages = with pkgs; [
cargo
cargo-deny
clippy
evcxr
rust-analyzer
rustc
rustfmt
];}
{ config, pkgs, ... }: {
home.packages = with pkgs; [
cargo
cargo-deny
clippy
evcxr
rust-analyzer
rustc
rustfmt
];
}

View File

@@ -21,7 +21,7 @@
PHOTOPRISM_ADMIN_USER = "user";
};
};
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.timeout = 1;