19 lines
405 B
Nix
19 lines
405 B
Nix
# This is your home-manager configuration file
|
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
|
|
|
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
# You can import other home-manager modules here
|
|
imports = [
|
|
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
programs.git.enable = true;
|
|
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|
|
|