Update common.nix

This commit is contained in:
ediblerope 2026-01-20 08:21:34 +00:00 committed by GitHub
parent 479d29f06c
commit 4a08d4370e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
];
}