mirror of
https://github.com/alyssadev/nixos.git
synced 2025-10-14 04:59:39 +10:00
parent
3b59b02c59
commit
9ad247d428
3 changed files with 19 additions and 22 deletions
33
home/aly.nix
33
home/aly.nix
|
@ -1,30 +1,31 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, lib, gui, ... }:
|
||||
|
||||
{
|
||||
home.username = "aly";
|
||||
home.homeDirectory = "/home/aly";
|
||||
# xresources.properties = {
|
||||
# "Xcursor.size" = 16;
|
||||
# "Xft.dpi" = 300;
|
||||
# };
|
||||
xresources.properties = lib.mkIf gui {
|
||||
"Xcursor.size" = 16;
|
||||
"Xft.dpi" = 300;
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
# gnome-tweaks obs-studio rpi-imager google-cloud-sdk supersonic
|
||||
neofetch nnn zip xz unzip p7zip ripgrep jq yq-go mtr iperf3 dnsutils
|
||||
ldns aria2 socat nmap ipcalc file which tree gnused gnutar gawk zstd
|
||||
gnupg btop iotop iftop strace ltrace lsof sysstat lm_sensors ethtool
|
||||
pciutils usbutils nix-output-monitor
|
||||
] ++ lib.optionals gui [
|
||||
gnome-tweaks obs-studio rpi-imager google-cloud-sdk supersonic
|
||||
];
|
||||
|
||||
# programs.firefox = {
|
||||
# enable = true;
|
||||
# profiles.default = {
|
||||
# extensions = {
|
||||
# packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
# ublock-origin bitwarden darkreader indie-wiki-buddy sponsorblock
|
||||
# ];
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
programs.firefox = lib.mkIf gui {
|
||||
enable = true;
|
||||
profiles.default = {
|
||||
extensions = {
|
||||
packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
ublock-origin bitwarden darkreader indie-wiki-buddy sponsorblock
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue