This commit is contained in:
nora 2023-05-26 21:27:02 +02:00
parent 7ab11798ed
commit d47c674cad
3 changed files with 35 additions and 8 deletions

View file

@ -1,7 +1,12 @@
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{ inputs, lib, config, pkgs, nur, ... }: {
{ inputs
, lib
, config
, pkgs
, ...
}: {
# You can import other home-manager modules here
imports = [
# If you want to use home-manager modules from other flakes (such as nix-colors):
@ -23,6 +28,8 @@
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
inputs.nur.overlay
];
# Configure your nixpkgs instance
config = {
@ -74,10 +81,10 @@
programs.firefox = {
enable = true;
# extensions = with pkgs.nur.repos.rycee.firefox-addons; [
# ublock-origin
# bitwarden
# ];
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
];
profiles = {
nils = {
id = 0;
@ -100,6 +107,11 @@
enable = true;
};
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";