fixing fitbit

This commit is contained in:
2023-11-30 14:52:44 +00:00
parent 4dc8f4b226
commit 561ec749c9

View File

@@ -27,6 +27,8 @@ outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }@inputs:
};
specialArgs = {
inherit inputs outputs lib;
# By default, the system will only use packages from the
# stable channel. You can selectively install packages
# from the unstable channel. You can also add more
@@ -59,6 +61,7 @@ outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }@inputs:
];
};
in {
# Output all modules in ./modules to flake. Modules should be in
# individual subdirectories and contain a default.nix file
nixosModules = builtins.listToAttrs (map
@@ -68,9 +71,8 @@ outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }@inputs:
})
(builtins.attrNames (builtins.readDir ./modules/nixos)));
##import our HM modules
## -- imported in ./home-manger/general
# Output all modules in ./modules to flake. Modules should be in
# individual subdirectories and contain a default.nix file
homeManagerModules = builtins.listToAttrs (map
(name: {
inherit name;