new beginning
This commit is contained in:
43
home/configurations.nix
Normal file
43
home/configurations.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
nixpkgs,
|
||||
nurpkgs,
|
||||
home-manager,
|
||||
devenv,
|
||||
...
|
||||
}: let
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
|
||||
nur = import nurpkgs {
|
||||
inherit pkgs;
|
||||
nurpkgs = pkgs;
|
||||
};
|
||||
in {
|
||||
work = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
extraSpecialArgs = {
|
||||
inherit devenv; # TODO: Remove dependency on devenv
|
||||
ff-addons = nur.repos.rycee.firefox-addons;
|
||||
};
|
||||
|
||||
modules = [
|
||||
../home-modules/modules-list.nix
|
||||
./work
|
||||
];
|
||||
};
|
||||
|
||||
framework = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
extraSpecialArgs = {
|
||||
ff-addons = nur.repos.rycee.firefox-addons;
|
||||
};
|
||||
|
||||
modules = [
|
||||
# ../home-modules/modules-list.nix
|
||||
./framework
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user