Require user to import their own home.nix

This commit is contained in:
Patrick Menking 2024-09-17 20:56:48 -04:00
parent 974b3e2d48
commit 6c34c8f62e
3 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,11 @@
{
{config, ...}: {
imports = [
./crow
];
config.home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
};
}