15 lines
240 B
Nix
Executable file
15 lines
240 B
Nix
Executable file
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
# You can import other home-manager modules here
|
|
imports = [
|
|
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|
|
|