mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 05:52:56 -05:00
al.y@petalburg: add firefox
This commit is contained in:
parent
dfe415ac32
commit
bf974d0915
|
@ -126,7 +126,14 @@
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"aly@petalburg" = self.inputs.home-manager.lib.homeManagerConfiguration {
|
"aly@petalburg" = self.inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
extraSpecialArgs = {inherit self;};
|
extraSpecialArgs = {inherit self;};
|
||||||
pkgs = import self.inputs.nixpkgs {system = "x86_64-linux";};
|
pkgs = import self.inputs.nixpkgs {
|
||||||
|
overlays = [
|
||||||
|
self.inputs.nur.overlays.default
|
||||||
|
self.overlays.default
|
||||||
|
];
|
||||||
|
|
||||||
|
system = "x86_64-linux";
|
||||||
|
};
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
self.homeManagerModules.aly-petalburg
|
self.homeManagerModules.aly-petalburg
|
||||||
|
|
|
@ -3,6 +3,10 @@ self: {
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
imports = [
|
||||||
|
./firefox
|
||||||
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
homeDirectory = "/var/home/aly";
|
homeDirectory = "/var/home/aly";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue