nix-on-droid/tests/on-device/config-h-m.nix
Sergey Volkov 91f353edb0 update inputs and copyrights to 24.05
Co-authored-by: Alexander Sosedkin <monk@unboiled.info>
2024-07-08 00:54:46 +02:00

18 lines
354 B
Nix

{ pkgs, config, ... }:
{
system.stateVersion = "24.05";
home-manager.config =
{ pkgs, lib, ... }:
{
home.stateVersion = "24.05";
nixpkgs = { inherit (config.nixpkgs) overlays; };
# example config
xdg.configFile.example.text = "example config";
# example package
home.packages = [ pkgs.dash ];
};
}