update
This commit is contained in:
parent
52de4024bd
commit
a943e0d34e
@ -25,7 +25,7 @@
|
||||
imports = [
|
||||
./nixos.nix
|
||||
./hardware-configuration/iota.nix
|
||||
{_module.args = {inherit inputs;};}
|
||||
{ _module.args = { inherit inputs; }; }
|
||||
];
|
||||
home-manager.users.steph = { imports = [ ./home.nix ./platforms/linux/home.nix ]; };
|
||||
home-manager.extraSpecialArgs = { inherit inputs ; os = "linux"; };
|
||||
@ -40,10 +40,10 @@
|
||||
imports = [
|
||||
./nixos.nix
|
||||
./hardware-configuration/tau.nix
|
||||
{_module.args = {inherit inputs;};}
|
||||
{ _module.args = { inherit inputs; }; }
|
||||
];
|
||||
home-manager.users.steph = { imports = [ ./home.nix ./platforms/linux/home.nix ]; };
|
||||
home-manager.extraSpecialArgs = { inherit inputs ; os = "linux"; };
|
||||
home-manager.extraSpecialArgs = { inherit inputs; os = "linux"; };
|
||||
}
|
||||
];
|
||||
};
|
||||
@ -56,6 +56,5 @@
|
||||
mac-app-util.homeManagerModules.default
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -10,8 +10,7 @@
|
||||
inputs.firefox-macos-theme;
|
||||
})
|
||||
|
||||
{
|
||||
programs.librewolf = lib.mkMerge [
|
||||
(let configedFirefox = lib.mkMerge [
|
||||
(lib.mkIf (os == "darwin") {
|
||||
package = null;
|
||||
})
|
||||
@ -93,5 +92,13 @@
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
in lib.mkMerge [
|
||||
(lib.mkIf (os == "linux") {
|
||||
programs.librewolf = configedFirefox;
|
||||
})
|
||||
|
||||
(lib.mkIf (os == "darwin") {
|
||||
programs.firefox = configedFirefox;
|
||||
})
|
||||
])
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user