24 lines
333 B
Nix
24 lines
333 B
Nix
{ ... }: {
|
|
imports = [
|
|
../../lib/modules/valhalla.nix
|
|
];
|
|
|
|
config = {
|
|
valhalla = {
|
|
users.manuel = {
|
|
oh-my-posh = {
|
|
theme = {
|
|
source = ./manuel.omp.json;
|
|
};
|
|
};
|
|
};
|
|
|
|
partition = {
|
|
os = {
|
|
partitions = { };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|