config/users/default.nix

10 lines
317 B
Nix
Raw Normal View History

2023-02-25 04:39:30 +01:00
{ config, pkgs, lib, inputs, ... }:
2022-10-17 22:40:48 +02:00
{
2023-02-25 04:39:30 +01:00
#imports = [ <home-manager/nixos> ];
imports = [ inputs.home-manager.nixosModule ];
home-manager.useGlobalPkgs = true; # go brrr
2023-02-25 04:39:30 +01:00
#home-manager.useUserPackages = true # needed if VM
2023-02-25 01:29:13 +01:00
# When adding a new user accounts: Don't forget to set a password with passwd!
2022-10-17 22:40:48 +02:00
}