mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
Home-manager changes
This commit is contained in:
parent
470dbe7cc6
commit
552487bdc5
2 changed files with 9 additions and 5 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue