Fix root profile name casing

This commit is contained in:
Marko Korhonen 2025-06-07 21:41:19 -05:00
parent 13d32f0da2
commit c0a307ef19
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -168,10 +168,10 @@ dst = "/etc/doas.conf"
src = "etc/flexo/flexo.toml" src = "etc/flexo/flexo.toml"
dst = "/etc/flexo/flexo.toml" dst = "/etc/flexo/flexo.toml"
[profiles.Locale] [profiles.locale]
dotfiles = ["f_locale.conf", "f_locale.gen"] dotfiles = ["f_locale.conf", "f_locale.gen"]
[profiles.Pacman] [profiles.pacman]
dotfiles = [ dotfiles = [
"f_pacman.conf", "f_pacman.conf",
"f_pacman_zsh_hook", "f_pacman_zsh_hook",
@ -204,7 +204,7 @@ dotfiles = [
"f_welcomemessage.conf", "f_welcomemessage.conf",
"f_flexo.toml", "f_flexo.toml",
] ]
include = ["Locale", "Pacman"] include = ["locale", "pacman"]
[profiles.VentoyArch] [profiles.VentoyArch]
dotfiles = [ dotfiles = [
@ -221,7 +221,7 @@ dotfiles = [
"f_system.conf", "f_system.conf",
"f_timesyncd.conf", "f_timesyncd.conf",
] ]
include = ["Locale", "Pacman"] include = ["locale", "pacman"]
[profiles.Shire] [profiles.Shire]
dotfiles = [ dotfiles = [
@ -244,10 +244,10 @@ dotfiles = [
"f_sshd_config", "f_sshd_config",
"f_system.conf", "f_system.conf",
] ]
include = ["Locale", "Pacman"] include = ["locale", "pacman"]
[profiles.Moria] [profiles.Moria]
include = ["Locale", "Pacman"] include = ["locale", "pacman"]
dotfiles = [ dotfiles = [
"f_99-sysctl.conf", "f_99-sysctl.conf",
"f_cmdline", "f_cmdline",
@ -265,18 +265,18 @@ dotfiles = [
dotfiles = ["f_doas.conf", "f_ignore", "f_sshd_config"] dotfiles = ["f_doas.conf", "f_ignore", "f_sshd_config"]
[profiles.Gondor] [profiles.Gondor]
include = ["Locale", "Pacman"] include = ["locale", "pacman"]
dotfiles = ["f_doas.conf", "f_sshd_config"] dotfiles = ["f_doas.conf", "f_sshd_config"]
[profiles.localhost] [profiles.localhost]
include = ["Locale"] include = ["locale"]
[profiles.Edoras] [profiles.Edoras]
include = ["Pacman"] include = ["pacman"]
[profiles.mko-laptop] [profiles.mko-laptop]
dotfiles = ["f_cpupower", "f_doas.conf", "f_timesyncd.conf"] dotfiles = ["f_cpupower", "f_doas.conf", "f_timesyncd.conf"]
[profiles.Evendim] [profiles.Evendim]
include = ["Locale", "Pacman"] include = ["locale", "pacman"]
dotfiles = ["f_doas.conf", "f_sshd_config"] dotfiles = ["f_doas.conf", "f_sshd_config"]