working on home manager spreading though the nix files

This commit is contained in:
Julian Sutter 2023-01-23 08:57:22 -08:00
parent 30f378b063
commit 5153dc64f6
4 changed files with 36 additions and 14 deletions

View file

@ -1,11 +1,11 @@
{ config, pkgs, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
in
{ config, pkgs, home-manager, ... }:
#let
# home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
#in
{
imports = [
(import "${home-manager}/nixos")
];
# imports = [
# (import "${home-manager}/nixos")
# ];
home-manager.users.jsutter = {
@ -25,10 +25,10 @@ in
};
# Add Firefox GNOME theme directory
home.file."firefox-gnome-theme" = {
target = ".mozilla/firefox/default/chrome/firefox-gnome-theme";
source = (fetchTarball "https://github.com/rafaelmardojai/firefox-gnome-theme/archive/master.tar.gz");
};
# home.file."firefox-gnome-theme" = {
# target = ".mozilla/firefox/default/chrome/firefox-gnome-theme";
# source = (fetchTarball "https://github.com/rafaelmardojai/firefox-gnome-theme/archive/master.tar.gz");
# };
programs.firefox = {
enable = true;