This repository has been archived on 2024-11-22. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-old/home.nix

135 lines
3.9 KiB
Nix
Raw Normal View History

2024-08-04 06:26:01 +00:00
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# You can import other home-manager modules here
imports = [
# If you want to use modules your own flake exports (from modules/home-manager):
# outputs.homeManagerModules.example
# Or modules exported from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModules.default
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
2024-08-04 08:17:06 -07:00
# Shared config
#../../shared/home-manager/shared_home.nix
2024-08-04 06:26:01 +00:00
];
nixpkgs = {
# You can add overlays here
overlays = [
# Add overlays your own flake exports (from overlays and pkgs dir):
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.unstable-packages
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
2024-08-04 14:17:41 -07:00
packageOverrides = pkgs: {
nur = import (builtins.fetchTarball {
url = "https://github.com/nix-community/NUR/archive/release-24.05.tar.gz";
sha256 = "1facb9jgayc9dpnvg3696r5a5w8x0791zkp0qdbiadg56w4lax6r";
}) {
inherit pkgs;
};
};
2024-08-04 06:26:01 +00:00
};
};
# TODO: Set your username
home = {
username = "aces";
homeDirectory = "/home/aces";
};
# Add stuff for your user as you see fit:
# programs.neovim.enable = true;
# home.packages = with pkgs; [ steam ]
# Enable home-manager and git
programs.home-manager.enable = true;
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "24.05";
2024-08-04 06:26:15 +00:00
home.file = {
".face" = {
source = assets/avatar.png;
};
".bashrc" = {
source = assets/.bashrc;
2024-08-04 14:17:41 -07:00
};
"Documents/projects/rust/flake.nix" = {
source = assets/toolchains/rust/flake.nix;
2024-08-04 14:17:41 -07:00
};
"Documents/projects/rust/.envrc" = {
source = assets/toolchains/rust/.envrc;
2024-08-04 14:17:41 -07:00
};
2024-08-04 06:26:15 +00:00
};
programs.firefox = {
enable = true;
# Privacy about:config settings
2024-08-04 14:17:41 -07:00
profiles.aces = {
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
darkreader
bitwarden
2024-08-04 14:17:41 -07:00
];
2024-08-04 06:26:15 +00:00
settings = {
# Disable telemetry
"browser.newtabpage.activity-stream.feeds.telemetry" = false;
"browser.ping-centre.telemetry" = false;
"browser.tabs.crashReporting.sendReport" = false;
"devtools.onboarding.telemetry.logged" = false;
"toolkit.telemetry.enabled" = false;
"toolkit.telemetry.unified" = false;
"toolkit.telemetry.server" = "";
# Disable Pocket
"browser.newtabpage.activity-stream.feeds.discoverystreamfeed" = false;
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
"browser.newtabpage.activity-stream.section.highlights.includePocket" = false;
"browser.newtabpage.activity-stream.showSponsored" = false;
"extensions.pocket.enabled" = false;
# Disable prefetching
"network.dns.disablePrefetch" = true;
"network.prefetch-next" = false;
# Disable JS in PDFs
"pdfjs.enableScripting" = false;
# Harden SSL
"security.ssl.require_safe_negotiation" = true;
};
};
};
programs.git = {
userName = "Seven Of Aces";
userEmail = "sevenofaces42@gmail.com";
};
2024-08-04 06:26:01 +00:00
}