From 4a08d4370e7e32e8dcc4a591d1df16ca74c54f21 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 20 Jan 2026 08:21:34 +0000 Subject: [PATCH] Update common.nix --- common.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/common.nix b/common.nix index 2f5ab6a..ce3deba 100644 --- a/common.nix +++ b/common.nix @@ -1,8 +1,15 @@ # Common.nix { config, pkgs, lib, ... }: +let + home-manager = builtins.fetchTarball { + url = "https://github.com/nix-community/home-manager/archive/master.tar.gz"; + }; +in + { imports = [ + (import "${home-manager}/nixos") # hosts # ./hosts/FredOS-Gaming.nix ./hosts/FredOS-Macbook.nix @@ -81,7 +88,7 @@ # Add packages environment.systemPackages = with pkgs; [ git - adwaita-icon-theme - mission-center + #adwaita-icon-theme + #mission-center ]; }