Home-manager changes

This commit is contained in:
Patrick Menking 2024-09-17 15:47:16 -04:00
parent 470dbe7cc6
commit 552487bdc5
2 changed files with 9 additions and 5 deletions

View file

@ -1,7 +1,8 @@
{config, inputs, pkgs, lib, ...}: {
config.home-manager = lib.mkIf config.users.crow.home.enable {
enable = true;
useGlobalPkgs = true;
useUserPackages = true;
users.crow = {
home = {
username = "crow";

View file

@ -1,5 +1,8 @@
{ config, ... }: {
imports = [
./crow/home.nix
];
{ config, lib, ... }: {
config.home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.crow = lib.mkIf config.users.crow.home.enable ./crow/home.nix;
};
}