mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
18 lines
354 B
Nix
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 ];
|
|
};
|
|
}
|