12 lines
431 B
Go
12 lines
431 B
Go
package main
|
|
|
|
type Config struct {
|
|
Headless bool `mapstructure:"headless"`
|
|
Packages Packages `mapstructure:"packages"`
|
|
Flatpak FlatpakConfig `mapstructure:"flatpak"`
|
|
Homebrew HomebrewConfig `mapstructure:"homebrew"`
|
|
Cargo CargoConfig `mapstructure:"cargo"`
|
|
Go GoConfig `mapstructure:"go"`
|
|
Pipx PipxConfig `mapstructure:"pipx"`
|
|
Dotfiles DotfilesConfig `mapstructure:"dotfiles"`
|
|
}
|