refactor(common): move common stuff out of droid and default
This commit is contained in:
parent
bd7e203fb1
commit
0982a473de
8 changed files with 74 additions and 98 deletions
common/modules
|
@ -3,5 +3,6 @@
|
|||
./cachix.nix
|
||||
./locale.nix
|
||||
./locate.nix
|
||||
./global.nix
|
||||
];
|
||||
}
|
||||
|
|
11
common/modules/global.nix
Normal file
11
common/modules/global.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{nixpkgs, ...}: {
|
||||
# Minimize dowloads of indirect nixpkgs flakes
|
||||
nix.registry.nixpkgs = {
|
||||
flake = nixpkgs;
|
||||
exact = false;
|
||||
};
|
||||
|
||||
# Global hm settings
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue